diff --git a/db_routines.php b/db_routines.php
index 3307b4085e..f046648969 100644
--- a/db_routines.php
+++ b/db_routines.php
@@ -187,7 +187,7 @@ if (! empty($_REQUEST['execute_routine']) && ! empty($_REQUEST['routine_name']))
}
} else {
$output = '';
- $message = PMA_message::error(sprintf(__('Query "%s" failed'), $query) . '
'
+ $message = PMA_message::error(sprintf(__('The following query has failed: "%s"'), $query) . '
'
. __('MySQL said: ') . PMA_DBI_getError(null));
}
// Print/send output
@@ -206,7 +206,7 @@ if (! empty($_REQUEST['execute_routine']) && ! empty($_REQUEST['routine_name']))
}
} else {
$message = __('Error in processing request') . ' : '
- . sprintf(__('No routine with name %s found in database %s'),
+ . sprintf(__('No routine with name %1$s found in database %2$s'),
htmlspecialchars(PMA_backquote($_REQUEST['routine_name'])),
htmlspecialchars(PMA_backquote($db)));
$message = PMA_message::error($message);
@@ -237,7 +237,12 @@ if (! empty($_REQUEST['execute_routine']) && ! empty($_REQUEST['routine_name']))
// exit;
}
} else if (($GLOBALS['is_ajax_request'] == true)) {
- PMA_ajaxResponse(PMA_message::error(), false);
+ $message = __('Error in processing request') . ' : '
+ . sprintf(__('No routine with name %1$s found in database %2$s'),
+ htmlspecialchars(PMA_backquote($_REQUEST['routine_name'])),
+ htmlspecialchars(PMA_backquote($db)));
+ $message = PMA_message::error($message);
+ PMA_ajaxResponse($message, false);
}
} else if (! empty($_GET['exportroutine']) && ! empty($_GET['routine_name'])) {
/**
@@ -261,7 +266,7 @@ if (! empty($_REQUEST['execute_routine']) && ! empty($_REQUEST['routine_name']))
}
} else {
$response = __('Error in processing request') . ' : '
- . sprintf(__('No routine with name %s found in database %s'),
+ . sprintf(__('No routine with name %1$s found in database %2$s'),
$routine_name, htmlspecialchars(PMA_backquote($db)));
$response = PMA_message::error($response);
if ($GLOBALS['is_ajax_request']) {
@@ -287,12 +292,12 @@ if (! empty($_REQUEST['execute_routine']) && ! empty($_REQUEST['routine_name']))
$drop_routine = "DROP {$_REQUEST['routine_original_type']} " . PMA_backquote($_REQUEST['routine_original_name']) . ";\n";
$result = PMA_DBI_try_query($drop_routine);
if (! $result) {
- $routine_errors[] = sprintf(__('Query "%s" failed'), $drop_routine) . '
'
+ $routine_errors[] = sprintf(__('The following query has failed: "%s"'), $drop_routine) . '
'
. __('MySQL said: ') . PMA_DBI_getError(null);
} else {
$result = PMA_DBI_try_query($routine_query);
if (! $result) {
- $routine_errors[] = sprintf(__('Query "%s" failed'), $routine_query) . '
'
+ $routine_errors[] = sprintf(__('The following query has failed: "%s"'), $routine_query) . '
'
. __('MySQL said: ') . PMA_DBI_getError(null);
// We dropped the old routine, but were unable to create the new one
// Try to restore the backup query
@@ -316,7 +321,7 @@ if (! empty($_REQUEST['execute_routine']) && ! empty($_REQUEST['routine_name']))
// 'Add a new routine' mode
$result = PMA_DBI_try_query($routine_query);
if (! $result) {
- $routine_errors[] = sprintf(__('Query "%s" failed'), $routine_query) . '
'
+ $routine_errors[] = sprintf(__('The following query has failed: "%s"'), $routine_query) . '
'
. __('MySQL said: ') . PMA_DBI_getError(null);
} else {
$message = PMA_Message::success(__('Routine %1$s has been created.'));
@@ -400,7 +405,7 @@ if (count($routine_errors) || ( empty($_REQUEST['routine_process_addroutine']) &
// exit;
} else {
$message = __('Error in processing request') . ' : '
- . sprintf(__('No routine with name %s found in database %s'),
+ . sprintf(__('No routine with name %1$s found in database %2$s'),
htmlspecialchars(PMA_backquote($_REQUEST['routine_name'])),
htmlspecialchars(PMA_backquote($db)));
$message = PMA_message::error($message);
diff --git a/libraries/StorageEngine.class.php b/libraries/StorageEngine.class.php
index 750489543b..bcb4f684f4 100644
--- a/libraries/StorageEngine.class.php
+++ b/libraries/StorageEngine.class.php
@@ -58,11 +58,11 @@ class PMA_StorageEngine
{
static $storage_engines = null;
- if (null !== $storage_engines) {
- return $storage_engines;
+ if (null == $storage_engines) {
+ $storage_engines = PMA_DBI_fetch_result('SHOW STORAGE ENGINES', 'Engine');
}
- return PMA_DBI_fetch_result('SHOW STORAGE ENGINES', 'Engine');
+ return $storage_engines;
}
/**
@@ -88,7 +88,8 @@ class PMA_StorageEngine
foreach (PMA_StorageEngine::getStorageEngines() as $key => $details) {
if (!$offerUnavailableEngines
- && ($details['Support'] == 'NO' || $details['Support'] == 'DISABLED')) {
+ && ($details['Support'] == 'NO' || $details['Support'] == 'DISABLED'
+ || $details['Engine'] == 'PERFORMANCE_SCHEMA')) {
continue;
}
diff --git a/libraries/common.inc.php b/libraries/common.inc.php
index 3bca2d63f1..a410d7a916 100644
--- a/libraries/common.inc.php
+++ b/libraries/common.inc.php
@@ -585,8 +585,8 @@ require './libraries/select_lang.lib.php';
* this check is done here after loading language files to present errors in locale
*/
if ($GLOBALS['PMA_Config']->error_config_file) {
- $error = '
' . __('Failed to to read configuration file') . '
'
- . _('This usually means there is a syntax error in it, please check any errors shown bellow.')
+ $error = '' . __('Failed to read configuration file') . '
'
+ . _('This usually means there is a syntax error in it, please check any errors shown below.')
. '
'
. '
'
. '';
diff --git a/po/af.po b/po/af.po
index bf14421225..c1577c9d33 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal \n"
"Language-Team: afrikaans \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: Pootle 2.0.1\n"
@@ -45,10 +45,10 @@ msgstr "Soek"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -61,18 +61,18 @@ msgstr "Soek"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Gaan"
@@ -129,9 +129,9 @@ msgstr "Tabel kommentaar"
msgid "Table comments"
msgstr "Tabel kommentaar"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "Tabel kommentaar"
msgid "Column"
msgstr "Kolom name"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "Kolom name"
msgid "Type"
msgstr "Tipe"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,12 +197,13 @@ msgstr "Skakels na"
msgid "Comments"
msgstr "Kommentaar"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -213,17 +214,17 @@ msgstr "Kommentaar"
msgid "No"
msgstr "Nee"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -337,8 +338,8 @@ msgstr ""
msgid "Switch to copied database"
msgstr ""
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -513,8 +514,8 @@ msgstr "SQL-navraag op databasis %s:"
msgid "Submit Query"
msgstr "Doen Navraag"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -613,7 +614,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Toegang Geweier"
@@ -741,8 +742,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -760,7 +761,7 @@ msgstr ""
msgid "Sum"
msgstr "Som"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
@@ -809,8 +810,8 @@ msgstr "Drukker mooi (print view)"
msgid "Empty"
msgstr "Maak Leeg"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -888,9 +889,9 @@ msgstr ""
msgid "Status"
msgstr ""
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -986,8 +987,8 @@ msgstr ""
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1157,11 +1158,11 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Verander"
@@ -1776,218 +1777,12 @@ msgstr "in gebruik"
msgid "Second"
msgstr "Rekords"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr ""
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Geen indeks gedefinieer!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indekse"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Uniek"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinality"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Kommentaar"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Die primere sleutel is verwyder"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeks %s is verwyder"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "databasisse"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Fout"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Geen tabelle"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabel %s is vernoem na %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Welkom by %s"
@@ -1995,8 +1790,8 @@ msgstr "Welkom by %s"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
@@ -2007,56 +1802,56 @@ msgid ""
"the administrator of the MySQL server."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Teken aan"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin dokumentasie"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Gebruiker Naam:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Wagwoord:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Bediener Keuse"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "HTTP Koekies moet van nou af geaktifeer wees."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr ""
@@ -2095,6 +1890,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Fout"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2148,6 +1951,11 @@ msgstr "Tabel"
msgid "Data"
msgstr "Data"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indekse"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2177,13 +1985,13 @@ msgid "Check Privileges"
msgstr "Geen Regte"
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr ""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2428,85 +2236,8 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Ongebalanseerde kwotasie-teken"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Struktuur"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Struktuur en data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Voltooi invoegings"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Uitgebreide toevoegings"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
+#: libraries/Config.class.php:1190
+msgid "Font size"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -3167,6 +2898,12 @@ msgstr ""
msgid "LaTeX"
msgstr "Etiket"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "databasisse"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4680,6 +4417,87 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Ongebalanseerde kwotasie-teken"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Struktuur"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Struktuur en data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Voltooi invoegings"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Uitgebreide toevoegings"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4745,6 +4563,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "Voeg 'n nuwe gebruiker by"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4816,9 +4651,9 @@ msgstr "Lengte/Waardes*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4871,6 +4706,12 @@ msgstr ""
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Kommentaar"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4930,23 +4771,6 @@ msgid ""
"3.11[/a]"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5104,8 +4928,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:275
@@ -5826,8 +5650,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6130,6 +5954,42 @@ msgstr ""
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6147,41 +6007,6 @@ msgstr "SQL resultaat"
msgid "Generated by"
msgstr "Voortgebring deur"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Geen databasisse"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6243,6 +6068,41 @@ msgstr "Kolom name"
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Geen databasisse"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6265,6 +6125,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Geen indeks gedefinieer!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Uniek"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinality"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Die primere sleutel is verwyder"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeks %s is verwyder"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6277,6 +6171,27 @@ msgstr "Geen"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6517,6 +6432,19 @@ msgstr ""
msgid "This format has no options"
msgstr ""
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Geen tabelle"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "nie OK"
@@ -6902,63 +6830,6 @@ msgstr ""
msgid "Target database"
msgstr "Soek in databasis"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Hardloop SQL stellings op databasis %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Hardloop SQL stellings op databasis %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Kolom name"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Boekmerk hierdie SQL-stelling"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Wys hierdie navraag weer hier "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Kyk slegs"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Soek die teksleer"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr ""
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7024,6 +6895,63 @@ msgstr "Ongeldige Identifiseerder"
msgid "Unknown Punctuation String"
msgstr "Onbekende Punktuasie String"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Hardloop SQL stellings op databasis %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Hardloop SQL stellings op databasis %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Kolom name"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Boekmerk hierdie SQL-stelling"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Wys hierdie navraag weer hier "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Kyk slegs"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Soek die teksleer"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr ""
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7031,6 +6959,48 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabel %s is vernoem na %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7155,6 +7125,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Voeg 'n nuwe gebruiker by"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8164,8 +8166,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 ""
#: server_privileges.php:1764
diff --git a/po/ar.po b/po/ar.po
index b324c63efc..79d52221d7 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-04-21 13:56+0200\n"
"Last-Translator: \n"
"Language-Team: arabic \n"
-"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -48,10 +48,10 @@ msgstr "ابحث"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "ابحث"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr " تنفيذ "
@@ -132,9 +132,9 @@ msgstr "ملاحظة قاعدة البيانات: "
msgid "Table comments"
msgstr "تعليقات على الجدول"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -145,12 +145,12 @@ msgstr "تعليقات على الجدول"
msgid "Column"
msgstr "اسم العمود"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -160,9 +160,9 @@ msgstr "اسم العمود"
msgid "Type"
msgstr "النوع"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -200,12 +200,13 @@ msgstr "مرتبط بـ"
msgid "Comments"
msgstr "تعليقات"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -216,17 +217,17 @@ msgstr "تعليقات"
msgid "No"
msgstr "لا"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -334,8 +335,8 @@ msgstr "أضف قيودا"
msgid "Switch to copied database"
msgstr ""
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -353,8 +354,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
-"%s."
+"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%"
+"s."
#: db_operations.php:600
#, fuzzy
@@ -509,8 +510,8 @@ msgstr "في قاعدة البيانات SQL-إستعلام %s:"
msgid "Submit Query"
msgstr "إرسال الاستعلام"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -618,7 +619,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "غير مسموح"
@@ -754,8 +755,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -773,7 +774,7 @@ msgstr ""
msgid "Sum"
msgstr "المجموع"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
@@ -822,8 +823,8 @@ msgstr "عرض نسخة للطباعة"
msgid "Empty"
msgstr "إفراغ محتوى"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -902,9 +903,9 @@ msgstr "محدث"
msgid "Status"
msgstr "وضع"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -998,8 +999,8 @@ msgstr "تم حفظ الـDump إلى الملف %s."
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1175,11 +1176,11 @@ msgstr "احذف المستخدمين المحددين"
msgid "Close"
msgstr "أغلق"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "تحرير"
@@ -1804,218 +1805,12 @@ msgstr "الدقيقة"
msgid "Second"
msgstr "الثانية"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "حجم الخط"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "فهرس غير معرف!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "فهارس"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "مميز"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinality"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "تعليق"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "لقد تم حذف المفتاح الأساسي"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "فهرسة محذوفة %s"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحدهما."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "قاعدة بيانات"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "خطأ"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Select Tables"
-msgid "Recent tables"
-msgstr "اختر الجداول"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "قاعدة البيانات غير صالحة"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "اسم الجدول غير صالح"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "خطأ في إعادة تسمية الجدول %1$s إلى %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "تم إعادة تسمية الجدول %s إلى %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "أهلا بك في %s"
@@ -2023,8 +1818,8 @@ msgstr "أهلا بك في %s"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
@@ -2038,56 +1833,56 @@ msgstr ""
"المستضيف، أو اسم المستخدم وكلمة المرور في ملف الإعداد config.inc.php وتتأكد "
"أنها مطابقة للمعلومات المعطاة إليك من قبل المسؤول عن خادم MySQL."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "دخول"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "مستندات وثائقية لـ phpMyAdmin (بالإنجليزية)"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "الخادم:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "اسم المستخدم:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "كلمة السر:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "اختيار الخادم"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "يجب تفعيل دعم الكوكيز في هذه المرحلة."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "لا يمكن الدخول إلى خادم MySQL"
@@ -2126,6 +1921,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "خطأ"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2178,6 +1981,11 @@ msgstr "جداول"
msgid "Data"
msgstr "بيانات"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "فهارس"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2207,13 +2015,13 @@ msgid "Check Privileges"
msgstr "تحقق من الصلاحيات"
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr ""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2459,85 +2267,9 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Close"
-msgid "Closed"
-msgstr "أغلق"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr ""
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "البنية والبيانات"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "لقد اكتمل الإدخال"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "إدخال مدد"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "حجم الخط"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3207,6 +2939,12 @@ msgstr ""
msgid "LaTeX"
msgstr "لاتكس"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "قاعدة بيانات"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4720,6 +4458,86 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Close"
+msgid "Closed"
+msgstr "أغلق"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr ""
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "البنية والبيانات"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "لقد اكتمل الإدخال"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "إدخال مدد"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4786,6 +4604,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "أضف مستخدم جديد"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4858,9 +4693,9 @@ msgstr "الطول/القيمة"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4919,6 +4754,11 @@ msgstr "نوع الاستعلام"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "تعليق"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4979,23 +4819,6 @@ msgid ""
"3.11[/a]"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5157,8 +4980,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:275
@@ -5888,8 +5711,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6201,6 +6024,42 @@ msgstr ""
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6218,40 +6077,6 @@ msgstr "ناتج استعلام SQL"
msgid "Generated by"
msgstr "أنشئ بواسطة"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "اذهب إلى الجدول"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6313,6 +6138,40 @@ msgstr "اسم العمود"
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "اذهب إلى الجدول"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6335,6 +6194,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "فهرس غير معرف!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "مميز"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinality"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "لقد تم حذف المفتاح الأساسي"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "فهرسة محذوفة %s"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحدهما."
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6347,6 +6240,27 @@ msgstr "لا شيء"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6591,6 +6505,20 @@ msgstr ""
msgid "This format has no options"
msgstr "هذا التنسيق ليس له أي خيارات"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Recent tables"
+msgstr "اختر الجداول"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "ليس صالحا"
@@ -6977,63 +6905,6 @@ msgstr "فرق"
msgid "Target database"
msgstr ""
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "تنفيذ استعلام/استعلامات SQL على قاعدة بيانات %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "اسم العمود"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "اجعل علامة مرجعية SQL-استعلام"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "لا تخزن على هذا الاستعلام من خارج النافذة"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " عرض هذا الاستعلام هنا مرة أخرى "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "عرض فقط"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "مكان ملف نصي"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "دليل تحميل الملفات على خادم الشبكة"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7094,6 +6965,63 @@ msgstr "معرف غير صالح"
msgid "Unknown Punctuation String"
msgstr "نص تنقيط غير معروف"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "تنفيذ استعلام/استعلامات SQL على قاعدة بيانات %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "اسم العمود"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "اجعل علامة مرجعية SQL-استعلام"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "لا تخزن على هذا الاستعلام من خارج النافذة"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " عرض هذا الاستعلام هنا مرة أخرى "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "عرض فقط"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "مكان ملف نصي"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "دليل تحميل الملفات على خادم الشبكة"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7103,6 +7031,48 @@ msgstr ""
"لم يمكن تشغيل محقق SQL. الرجاء التأكد مما إذا كنت ثبتت إضافات PHP كما هو "
"مشروح في %sالتوثيق%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "قاعدة البيانات غير صالحة"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "اسم الجدول غير صالح"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "خطأ في إعادة تسمية الجدول %1$s إلى %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "تم إعادة تسمية الجدول %s إلى %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7231,6 +7201,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "أضف مستخدم جديد"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7533,8 +7535,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
-"%s."
+"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%"
+"s."
#: main.php:314
msgid ""
@@ -8283,8 +8285,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 "
"مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا "
@@ -10583,8 +10585,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 "Execute bookmarked query"
#~ msgstr "نفذ استعلام محفوظ بعلامة مرجعية"
diff --git a/po/az.po b/po/az.po
index d4456d83a8..206e1d2e07 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -44,10 +44,10 @@ msgstr "Axtarış"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -60,18 +60,18 @@ msgstr "Axtarış"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Davam"
@@ -128,9 +128,9 @@ msgstr "Baza qısa izahatı: "
msgid "Table comments"
msgstr "Cedvel haqqında qısa izahat"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -141,12 +141,12 @@ msgstr "Cedvel haqqında qısa izahat"
msgid "Column"
msgstr "Sütun adları"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -156,9 +156,9 @@ msgstr "Sütun adları"
msgid "Type"
msgstr "Tip"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -196,12 +196,13 @@ msgstr "Links to"
msgid "Comments"
msgstr "Qısa İzahatlar"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -212,17 +213,17 @@ msgstr "Qısa İzahatlar"
msgid "No"
msgstr "Xeyir"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -336,8 +337,8 @@ msgstr ""
msgid "Switch to copied database"
msgstr "Kopyalanmış cedvele keç"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -512,8 +513,8 @@ msgstr "SQL-query on database %s:"
msgid "Submit Query"
msgstr "Emri İcra Et"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -614,7 +615,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Giriş Tesdiq Edilmedi"
@@ -742,8 +743,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -762,7 +763,7 @@ msgstr "Relations"
msgid "Sum"
msgstr "Cemi"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s bu MySQL serverinde esas depolama motoru olaraq qurulmuşdur."
@@ -811,8 +812,8 @@ msgstr "Çap görüntüsü"
msgid "Empty"
msgstr "Boşalt"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -890,9 +891,9 @@ msgstr ""
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -990,8 +991,8 @@ msgstr "Sxem %s faylına qeyd edildi."
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1172,11 +1173,11 @@ msgstr "Remove selected users"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Deyişdir"
@@ -1799,218 +1800,12 @@ msgstr "istifadede"
msgid "Second"
msgstr "saniyede"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr ""
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "İndeks te'yin edilmedi!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeksler"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unikal"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinality"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Qısa İzahatlar"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Birinci dereceli açar leğv edildi"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "%s indeksi leğv edildi"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Me'lumat Bazaları"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Xeta"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Cedvel yoxdur"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Bu depolama motoru haqqında etrafli status me'lumatı mövcud deyildir."
-
-#: libraries/StorageEngine.class.php:354
-#, fuzzy, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s motoru bu serverde söndürülmüşdür."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s motoru bu serverde söndürülmüşdür."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Bu MySQL server %s depolama motorunu desteklememektedir."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "%s cedveli %s olaraq yeniden adlandırılmışdır"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Elaqe qura bilmirem: yalnış quruluş."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "%s - e Xoş Gelmişsiniz!"
@@ -2018,8 +1813,8 @@ msgstr "%s - e Xoş Gelmişsiniz!"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
@@ -2030,57 +1825,57 @@ msgid ""
"the administrator of the MySQL server."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Sisteme Giriş"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin dokumentasiyası (etraflı me'lumat üçün)"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
#, fuzzy
msgid "Server:"
msgstr "Server"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "İstifadeçi Adı:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Parol:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Quraşdırılmış Serverler"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Sisteme girebilmeniz üçün çerez faylları (cookie-ler) aktiv olmalıdır."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "MySQL server-e gire bilmirem"
@@ -2119,6 +1914,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Xeta"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2171,6 +1974,11 @@ msgstr "Cedveller"
msgid "Data"
msgstr "Me'lumat"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeksler"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2200,13 +2008,13 @@ msgid "Check Privileges"
msgstr "Selahiyyetleri Gözden Keçir"
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr ""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2454,85 +2262,8 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Unclosed quote"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Quruluş"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Quruluş ve me'lumat"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Tam girişli"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Genişletilmiş girişli"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
+#: libraries/Config.class.php:1190
+msgid "Font size"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -3206,6 +2937,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Me'lumat Bazaları"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4736,6 +4473,87 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Unclosed quote"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Quruluş"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Quruluş ve me'lumat"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Tam girişli"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Genişletilmiş girişli"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4801,6 +4619,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "Yeni İstifadeçi elave Et"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4873,9 +4708,9 @@ msgstr "Uzunluq/Deyerler*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4933,6 +4768,12 @@ msgstr "Sorğu tipi"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Qısa İzahatlar"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4993,23 +4834,6 @@ msgid ""
"3.11[/a]"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5171,8 +4995,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:275
@@ -5903,8 +5727,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6218,6 +6042,42 @@ msgstr ""
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6235,41 +6095,6 @@ msgstr "SQL result"
msgid "Generated by"
msgstr "Qurucu"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6331,6 +6156,41 @@ msgstr "Sütun adları"
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6353,6 +6213,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "İndeks te'yin edilmedi!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unikal"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinality"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Birinci dereceli açar leğv edildi"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "%s indeksi leğv edildi"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6365,6 +6259,27 @@ msgstr "Heç biri"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6614,6 +6529,19 @@ msgstr ""
msgid "This format has no options"
msgstr "Bu formatın variantları yoxdur"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Cedvel yoxdur"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Müveffeqiyyetsiz"
@@ -7006,63 +6934,6 @@ msgstr ""
msgid "Target database"
msgstr "Search in database"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "%s me'lumat bazasına SQL sorğusu(-ları) gönder"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "%s me'lumat bazasına SQL sorğusu(-ları) gönder"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Sütun adları"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Bu SQL sorğusunu bookmark-la"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Bu sorğunu burada yene göster "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Sadece göster"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "tekst faylından yükleyerek"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web-server upload direktoriyası"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7125,6 +6996,63 @@ msgstr "Invalid Identifer"
msgid "Unknown Punctuation String"
msgstr "Unknown Punctuation String"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "%s me'lumat bazasına SQL sorğusu(-ları) gönder"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "%s me'lumat bazasına SQL sorğusu(-ları) gönder"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Sütun adları"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Bu SQL sorğusunu bookmark-la"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Bu sorğunu burada yene göster "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Sadece göster"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "tekst faylından yükleyerek"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web-server upload direktoriyası"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7134,6 +7062,48 @@ msgstr ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary php extensions as described in the %sdocumentation%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Bu depolama motoru haqqında etrafli status me'lumatı mövcud deyildir."
+
+#: libraries/StorageEngine.class.php:355
+#, fuzzy, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s motoru bu serverde söndürülmüşdür."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s motoru bu serverde söndürülmüşdür."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Bu MySQL server %s depolama motorunu desteklememektedir."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "%s cedveli %s olaraq yeniden adlandırılmışdır"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7263,6 +7233,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Yeni İstifadeçi elave Et"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8336,8 +8338,8 @@ msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et."
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 istifadeçi selahiyyetlerini birbaşa MySQL-in selahiyyetler "
"cedvellerinden almaqdadır. Eger elle nizamlamalar edilmişse, bu cedvellerin "
diff --git a/po/be.po b/po/be.po
index 92a23b6753..d2e73c1279 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -47,10 +47,10 @@ msgstr "Пошук"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "Пошук"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Панеслася"
@@ -131,9 +131,9 @@ msgstr "Камэнтар да базы дадзеных: "
msgid "Table comments"
msgstr "Камэнтар да табліцы"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "Камэнтар да табліцы"
msgid "Column"
msgstr "Назвы калёнак"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "Назвы калёнак"
msgid "Type"
msgstr "Тып"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,12 +199,13 @@ msgstr "Зьвязаная з"
msgid "Comments"
msgstr "Камэнтары"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +216,17 @@ msgstr "Камэнтары"
msgid "No"
msgstr "Не"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -336,8 +337,8 @@ msgstr "Дадаць абмежаваньні"
msgid "Switch to copied database"
msgstr "Перайсьці да скапіяванай базы дадзеных"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -511,8 +512,8 @@ msgstr "SQL-запыт да БД %s:"
msgid "Submit Query"
msgstr "Выканаць запыт"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -618,7 +619,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "У доступе адмоўлена"
@@ -746,11 +747,11 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -767,7 +768,7 @@ msgstr "Рэплікацыя"
msgid "Sum"
msgstr "Усяго"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
@@ -818,8 +819,8 @@ msgstr "Вэрсія для друку"
msgid "Empty"
msgstr "Ачысьціць"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -900,9 +901,9 @@ msgstr ""
msgid "Status"
msgstr "Стан"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -1001,8 +1002,8 @@ msgstr "Дамп захаваны ў файл %s."
#: import.php:58
#, 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."
msgstr ""
"Вы, мусіць, паспрабавалі загрузіць вельмі вялікі файл. Калі ласка, "
"зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае "
@@ -1021,8 +1022,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:336
@@ -1197,11 +1198,11 @@ msgstr "Выдаліць выбраных карыстальнікаў"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Рэдагаваць"
@@ -1829,230 +1830,12 @@ msgstr "выкарыстоўваецца"
msgid "Second"
msgstr "у сэкунду"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Памер шрыфта"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Памер загружанага файла пераўзыходзіць парамэтар upload_max_filesize у php."
-"ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Памер загружанага файла пераўзыходзіць парамэтар MAX_FILE_SIZE, які быў "
-"вызначаны ў HTML-форме."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Файл быў загружаны толькі часткова."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Адсутнічае часовая тэчка."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Памылка запісу на дыск."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Загрузка файла спыненая пашырэньнем."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Падчас загрузкі файла адбылася невядомая памылка."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Памылка перамяшчэньня загружанага файла. Глядзіце разьдзел 1.11 у FAQ"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Індэкс ня вызначаны!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Індэксы"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Унікальнае"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Сьціснутая"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Колькасьць элемэнтаў"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Камэнтар"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Першасны ключ быў выдалены"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Індэкс %s быў выдалены"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Падобна, што індэксы %1$s і %2$s зьяўляюцца аднолькавымі, а таму адзін зь "
-"іх, магчыма, можна выдаліць."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Базы дадзеных"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Памылка"
-
-#: libraries/Message.class.php:260
-#, fuzzy, php-format
-#| msgid "%1$d row(s) affected."
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Зьменена радкоў: %1$d."
-msgstr[1] "Зьменена радкоў: %1$d."
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "%1$d row(s) deleted."
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Выдалена радкоў: %1$d."
-msgstr[1] "Выдалена радкоў: %1$d."
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "%1$d row(s) inserted."
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Устаўлена радкоў: %1$d."
-msgstr[1] "Устаўлена радкоў: %1$d."
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Няма табліц"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-msgid "There are no recent tables"
-msgstr "Праверыць табліцу"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Для гэтай машыны захаваньня дадзеных дэтальная інфармацыя не даступная."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s даступная на гэтым MySQL-сэрвэры."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s была адключаная для рэтага MySQL-сэрвэра."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Гэты сэрвэр MySQL не падтрымлівае машыну захаваньня дадзеных %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Няправільная база дадзеных"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Некарэктнае імя табліцы"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Памылка перайменаваньня табліцы %1$s у %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Табліца %s была перайменаваная ў %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Дапушчальны шлях да малюнкаў тэмы %s ня знойдзены!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Папярэдні прагляд недаступны."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "гэтая"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Тэма па змоўчаньні %s ня знойдзеная!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Тэма %s ня знойдзеная!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Ня знойдзены шлях да тэмы %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Немагчыма падлучыцца: няправільныя налады."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Запрашаем у %s"
@@ -2060,8 +1843,8 @@ msgstr "Запрашаем у %s"
#: libraries/auth/config.auth.lib.php:106
#, 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."
@@ -2078,49 +1861,49 @@ msgstr ""
"ўпэўніцеся, што яны адпавядаюць інфармацыі, якую даў адміністратар MySQL-"
"сэрвэра."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Уваход у сыстэму"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Дакумэнтацыя па phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Сэрвэр"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Імя карыстальніка:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Пароль:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Выбар сэрвэра"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Cookies мусяць быць уключанымі пасьля гэтага месца."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -2128,8 +1911,8 @@ msgstr ""
"Не было аніякай актыўнасьці на працягу %s сэкундаў. Калі ласка, увайдзіце "
"зноў"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Немагчыма залагавацца на сэрвэр MySQL"
@@ -2171,6 +1954,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Супастаўленьне падлучэньня да MySQL"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Памылка"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2223,6 +2014,11 @@ msgstr "Табліц"
msgid "Data"
msgstr "Дадзеныя"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Індэксы"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2255,13 +2051,13 @@ msgstr "Праверыць прывілеі"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2513,86 +2309,9 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Незакрытае двукосьсе"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Структура"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Структуру і дадзеныя"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Поўная ўстаўка"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Пашыраныя ўстаўкі"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Памер шрыфта"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3266,6 +2985,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Базы дадзеных"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4829,6 +4554,87 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Незакрытае двукосьсе"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Структура"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Структуру і дадзеныя"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Поўная ўстаўка"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Пашыраныя ўстаўкі"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4895,6 +4701,25 @@ msgstr ""
msgid "Add a new Event"
msgstr "Дадаць новага карыстальніка"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Не атрымалася ўсталяваць злучэньне для controluser, вызначанае ў вашым "
+"канфігурацыйным файле."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Сэрвэр не адказвае"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Падрабязьней..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4969,9 +4794,9 @@ msgstr "Даўжыня/Значэньні*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -5030,6 +4855,11 @@ msgstr "Тып запыту"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Камэнтар"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5093,25 +4923,6 @@ msgid ""
"3.11[/a]"
msgstr "Значэньне можа быць прыблізным. Гл. FAQ 3.11"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Не атрымалася ўсталяваць злучэньне для controluser, вызначанае ў вашым "
-"канфігурацыйным файле."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Сэрвэр не адказвае"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Падрабязьней..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5282,8 +5093,8 @@ msgstr ""
#| "happen: %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, таму можна "
"выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя "
@@ -6089,8 +5900,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6408,6 +6219,46 @@ msgstr "Выгляд"
msgid "Export contents"
msgstr "Тып экспарту"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Памер загружанага файла пераўзыходзіць парамэтар upload_max_filesize у php."
+"ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Памер загружанага файла пераўзыходзіць парамэтар MAX_FILE_SIZE, які быў "
+"вызначаны ў HTML-форме."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Файл быў загружаны толькі часткова."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Адсутнічае часовая тэчка."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Памылка запісу на дыск."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Загрузка файла спыненая пашырэньнем."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Падчас загрузкі файла адбылася невядомая памылка."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Памылка перамяшчэньня загружанага файла. Глядзіце разьдзел 1.11 у FAQ"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6425,42 +6276,6 @@ msgstr "SQL-вынік"
msgid "Generated by"
msgstr "Створаны"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Базы дадзеных адсутнічаюць"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "Базы дадзеных адсутнічаюць"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6523,6 +6338,42 @@ msgstr "Назвы калёнак"
msgid "This plugin does not support compressed imports!"
msgstr "Гэты плагін не падтрымлівае сьціснутыя дадзеныя!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Базы дадзеных адсутнічаюць"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "Базы дадзеных адсутнічаюць"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6547,6 +6398,42 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Індэкс ня вызначаны!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Унікальнае"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Сьціснутая"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Колькасьць элемэнтаў"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Першасны ключ быў выдалены"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Індэкс %s быў выдалены"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Падобна, што індэксы %1$s і %2$s зьяўляюцца аднолькавымі, а таму адзін зь "
+"іх, магчыма, можна выдаліць."
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6559,6 +6446,30 @@ msgstr "Няма"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, fuzzy, php-format
+#| msgid "%1$d row(s) affected."
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Зьменена радкоў: %1$d."
+msgstr[1] "Зьменена радкоў: %1$d."
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "%1$d row(s) deleted."
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Выдалена радкоў: %1$d."
+msgstr[1] "Выдалена радкоў: %1$d."
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "%1$d row(s) inserted."
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Устаўлена радкоў: %1$d."
+msgstr[1] "Устаўлена радкоў: %1$d."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6803,6 +6714,22 @@ msgstr ""
msgid "This format has no options"
msgstr "Гэты фармат ня мае опцыяў"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Няма табліц"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+msgid "There are no recent tables"
+msgstr "Праверыць табліцу"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "не OK"
@@ -7199,64 +7126,6 @@ msgstr ""
msgid "Target database"
msgstr "Пошук у базе дадзеных"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Выканаць SQL-запыт(ы) на сэрвэры %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Выканаць SQL-запыт(ы) на базе дадзеных %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Каляндар"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Назвы калёнак"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Дадаць гэты SQL-запыт у закладкі"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Замяніць існую закладку з такім жа імем"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Не перазапісвайце гэты запыт у іншых вокнах"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Разьдзяляльнік"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Паказаць гэты запыт зноў "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Толькі прагляд"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Месцазнаходжаньне тэкставага файла"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "тэчка вэб-сэрвэра для загрузкі файлаў"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7321,6 +7190,64 @@ msgstr "Няправільны ідэнтыфікатар"
msgid "Unknown Punctuation String"
msgstr "Невядомы сымбаль пунктуацыі"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Выканаць SQL-запыт(ы) на сэрвэры %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Выканаць SQL-запыт(ы) на базе дадзеных %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Каляндар"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Назвы калёнак"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Дадаць гэты SQL-запыт у закладкі"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Замяніць існую закладку з такім жа імем"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Не перазапісвайце гэты запыт у іншых вокнах"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Разьдзяляльнік"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Паказаць гэты запыт зноў "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Толькі прагляд"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Месцазнаходжаньне тэкставага файла"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "тэчка вэб-сэрвэра для загрузкі файлаў"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7331,6 +7258,49 @@ msgstr ""
"ўсталяваныя ў вас неабходныя пашырэньні PHP, як гэта апісана ў %sдакумэнтацыі"
"%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Для гэтай машыны захаваньня дадзеных дэтальная інфармацыя не даступная."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s даступная на гэтым MySQL-сэрвэры."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s была адключаная для рэтага MySQL-сэрвэра."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Гэты сэрвэр MySQL не падтрымлівае машыну захаваньня дадзеных %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Няправільная база дадзеных"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Некарэктнае імя табліцы"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Памылка перайменаваньня табліцы %1$s у %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Табліца %s была перайменаваная ў %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Табліца — пустая!"
@@ -7461,6 +7431,38 @@ msgstr "Азначэньне PARTITION"
msgid "+ Add a new value"
msgstr "Дадаць новага карыстальніка"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Дапушчальны шлях да малюнкаў тэмы %s ня знойдзены!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Папярэдні прагляд недаступны."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "гэтая"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Тэма па змоўчаньні %s ня знойдзеная!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Тэма %s ня знойдзеная!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Ня знойдзены шлях да тэмы %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8591,8 +8593,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. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, "
diff --git a/po/be@latin.po b/po/be@latin.po
index 5b1e12e7a5..48cfd4e1da 100644
--- a/po/be@latin.po
+++ b/po/be@latin.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal \n"
"Language-Team: belarusian_latin \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: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -49,10 +49,10 @@ msgstr "Pošuk"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Pošuk"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Paniesłasia"
@@ -133,9 +133,9 @@ msgstr "Kamentar da bazy dadzienych: "
msgid "Table comments"
msgstr "Kamentar da tablicy"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -146,12 +146,12 @@ msgstr "Kamentar da tablicy"
msgid "Column"
msgstr "Nazvy kalonak"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -161,9 +161,9 @@ msgstr "Nazvy kalonak"
msgid "Type"
msgstr "Typ"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -201,12 +201,13 @@ msgstr "Źviazanaja z"
msgid "Comments"
msgstr "Kamentary"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -217,17 +218,17 @@ msgstr "Kamentary"
msgid "No"
msgstr "Nie"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -339,8 +340,8 @@ msgstr "Dadać abmiežavańni"
msgid "Switch to copied database"
msgstr "Pierajści da skapijavanaj bazy dadzienych"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -515,8 +516,8 @@ msgstr "SQL-zapyt da BD %s:"
msgid "Submit Query"
msgstr "Vykanać zapyt"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -624,7 +625,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "U dostupie admoŭlena"
@@ -754,11 +755,11 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -775,7 +776,7 @@ msgstr "Replikacyja"
msgid "Sum"
msgstr "Usiaho"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
@@ -826,8 +827,8 @@ msgstr "Versija dla druku"
msgid "Empty"
msgstr "Ačyścić"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -904,9 +905,9 @@ msgstr ""
msgid "Status"
msgstr "Stan"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -1000,8 +1001,8 @@ msgstr "Damp zachavany ŭ fajł %s."
#: import.php:58
#, 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."
msgstr ""
"Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, "
"źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje "
@@ -1020,8 +1021,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:336
@@ -1196,11 +1197,11 @@ msgstr "Vydalić vybranych karystalnikaŭ"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Redagavać"
@@ -1835,231 +1836,12 @@ msgstr "vykarystoŭvajecca"
msgid "Second"
msgstr "u sekundu"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Pamier šryfta"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Pamier zahružanaha fajła pieraŭzychodzić parametar upload_max_filesize u php."
-"ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Pamier zahružanaha fajła pieraŭzychodzić parametar MAX_FILE_SIZE, jaki byŭ "
-"vyznačany ŭ HTML-formie."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Fajł byŭ zahružany tolki častkova."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Adsutničaje časovaja tečka."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Pamyłka zapisu na dysk."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Zahruzka fajła spynienaja pašyreńniem."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Pamyłka pieramiaščeńnia zahružanaha fajła. Hladzicie raździeł 1.11 u FAQ"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Indeks nia vyznačany!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeksy"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unikalnaje"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Ścisnutaja"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kolkaść elementaŭ"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Kamentar"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Pieršasny kluč byŭ vydaleny"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeks %s byŭ vydaleny"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Padobna, što indeksy %1$s i %2$s źjaŭlajucca adnolkavymi, a tamu adzin ź "
-"ich, mahčyma, možna vydalić."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Bazy dadzienych"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Pamyłka"
-
-#: libraries/Message.class.php:260
-#, fuzzy, php-format
-#| msgid "%1$d row(s) affected."
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Źmieniena radkoŭ: %1$d."
-msgstr[1] "Źmieniena radkoŭ: %1$d."
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "%1$d row(s) deleted."
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Vydalena radkoŭ: %1$d."
-msgstr[1] "Vydalena radkoŭ: %1$d."
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "%1$d row(s) inserted."
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Ustaŭlena radkoŭ: %1$d."
-msgstr[1] "Ustaŭlena radkoŭ: %1$d."
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Select Tables"
-msgid "Recent tables"
-msgstr "Vybierycie tablicu(y)"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Dla hetaj mašyny zachavańnia dadzienych detalnaja infarmacyja nie dastupnaja."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s dastupnaja na hetym MySQL-servery."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s była adklučanaja dla retaha MySQL-servera."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Hety server MySQL nie padtrymlivaje mašynu zachavańnia dadzienych %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Niapravilnaja baza dadzienych"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Niekarektnaje imia tablicy"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Pamyłka pierajmienavańnia tablicy %1$s u %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tablica %s była pierajmienavanaja ŭ %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Dapuščalny šlach da malunkaŭ temy %s nia znojdzieny!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Papiaredni prahlad niedastupny."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "hetaja"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Tema pa zmoŭčańni %s nia znojdzienaja!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s nia znojdzienaja!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Nia znojdzieny šlach da temy %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Niemahčyma padłučycca: niapravilnyja nałady."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Zaprašajem u %s"
@@ -2067,8 +1849,8 @@ msgstr "Zaprašajem u %s"
#: libraries/auth/config.auth.lib.php:106
#, 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."
@@ -2085,49 +1867,49 @@ msgstr ""
"ŭpeŭniciesia, što jany adpaviadajuć infarmacyi, jakuju daŭ administratar "
"MySQL-servera."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Uvachod u systemu"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Dakumentacyja pa phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Server"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Imia karystalnika:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Parol:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Vybar servera"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Cookies musiać być uklučanymi paśla hetaha miesca."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -2135,8 +1917,8 @@ msgstr ""
"Nie było anijakaj aktyŭnaści na praciahu %s sekundaŭ. Kali łaska, uvajdzicie "
"znoŭ"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Niemahčyma załahavacca na server MySQL"
@@ -2179,6 +1961,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Supastaŭleńnie padłučeńnia da MySQL"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Pamyłka"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2231,6 +2021,11 @@ msgstr "Tablic"
msgid "Data"
msgstr "Dadzienyja"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeksy"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2264,13 +2059,13 @@ msgstr "Pravieryć pryvilei"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2524,85 +2319,9 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Niezakrytaje dvukośsie"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr ""
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Strukturu i dadzienyja"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Poŭnaja ŭstaŭka"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Pašyranyja ŭstaŭki"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Pamier šryfta"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3268,6 +2987,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Bazy dadzienych"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4805,6 +4530,86 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Niezakrytaje dvukośsie"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr ""
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Strukturu i dadzienyja"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Poŭnaja ŭstaŭka"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Pašyranyja ŭstaŭki"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4873,6 +4678,25 @@ msgstr ""
msgid "Add a new Event"
msgstr "Dadać novaha karystalnika"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+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 "
+"kanfihuracyjnym fajle."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Server nie adkazvaje"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Padrabiaźniej..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4947,9 +4771,9 @@ msgstr "Daŭžynia/Značeńni*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -5008,6 +4832,11 @@ msgstr "Typ zapytu"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Kamentar"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5070,25 +4899,6 @@ msgid ""
"3.11[/a]"
msgstr "Značeńnie moža być prybliznym. Hł. FAQ 3.11"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-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 "
-"kanfihuracyjnym fajle."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Server nie adkazvaje"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Padrabiaźniej..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5258,8 +5068,8 @@ msgstr ""
#| "happen: %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ć "
@@ -6068,8 +5878,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6387,6 +6197,47 @@ msgstr "Vyhlad"
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Pamier zahružanaha fajła pieraŭzychodzić parametar upload_max_filesize u php."
+"ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Pamier zahružanaha fajła pieraŭzychodzić parametar MAX_FILE_SIZE, jaki byŭ "
+"vyznačany ŭ HTML-formie."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Fajł byŭ zahružany tolki častkova."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Adsutničaje časovaja tečka."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Pamyłka zapisu na dysk."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Zahruzka fajła spynienaja pašyreńniem."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Pamyłka pieramiaščeńnia zahružanaha fajła. Hladzicie raździeł 1.11 u FAQ"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6404,40 +6255,6 @@ msgstr "SQL-vynik"
msgid "Generated by"
msgstr "Stvorany"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6500,6 +6317,40 @@ msgstr "Nazvy kalonak"
msgid "This plugin does not support compressed imports!"
msgstr "Hety płahin nie padtrymlivaje ścisnutyja dadzienyja!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6524,6 +6375,42 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Indeks nia vyznačany!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unikalnaje"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Ścisnutaja"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kolkaść elementaŭ"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Pieršasny kluč byŭ vydaleny"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeks %s byŭ vydaleny"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Padobna, što indeksy %1$s i %2$s źjaŭlajucca adnolkavymi, a tamu adzin ź "
+"ich, mahčyma, možna vydalić."
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6536,6 +6423,30 @@ msgstr "Nijakaja"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, fuzzy, php-format
+#| msgid "%1$d row(s) affected."
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Źmieniena radkoŭ: %1$d."
+msgstr[1] "Źmieniena radkoŭ: %1$d."
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "%1$d row(s) deleted."
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Vydalena radkoŭ: %1$d."
+msgstr[1] "Vydalena radkoŭ: %1$d."
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "%1$d row(s) inserted."
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Ustaŭlena radkoŭ: %1$d."
+msgstr[1] "Ustaŭlena radkoŭ: %1$d."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6780,6 +6691,22 @@ msgstr ""
msgid "This format has no options"
msgstr "Hety farmat nia maje opcyjaŭ"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Recent tables"
+msgstr "Vybierycie tablicu(y)"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "nie OK"
@@ -7171,63 +7098,6 @@ msgstr ""
msgid "Target database"
msgstr ""
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Vykanać SQL-zapyt(y) na servery %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Vykanać SQL-zapyt(y) na bazie dadzienych %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Nazvy kalonak"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Dadać hety SQL-zapyt u zakładki"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Zamianić isnuju zakładku z takim ža imiem"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Nie pierazapisvajcie hety zapyt u inšych voknach"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Raździalalnik"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Pakazać hety zapyt znoŭ "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Tolki prahlad"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Miescaznachodžańnie tekstavaha fajła"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "tečka web-servera dla zahruzki fajłaŭ"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7293,6 +7163,63 @@ msgstr "Niapravilny identyfikatar"
msgid "Unknown Punctuation String"
msgstr "Nieviadomy symbal punktuacyi"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Vykanać SQL-zapyt(y) na servery %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Vykanać SQL-zapyt(y) na bazie dadzienych %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Nazvy kalonak"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Dadać hety SQL-zapyt u zakładki"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Zamianić isnuju zakładku z takim ža imiem"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Nie pierazapisvajcie hety zapyt u inšych voknach"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Raździalalnik"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Pakazać hety zapyt znoŭ "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Tolki prahlad"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Miescaznachodžańnie tekstavaha fajła"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "tečka web-servera dla zahruzki fajłaŭ"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7300,8 +7227,51 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%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."
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Dla hetaj mašyny zachavańnia dadzienych detalnaja infarmacyja nie dastupnaja."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s dastupnaja na hetym MySQL-servery."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s była adklučanaja dla retaha MySQL-servera."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Hety server MySQL nie padtrymlivaje mašynu zachavańnia dadzienych %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Niapravilnaja baza dadzienych"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Niekarektnaje imia tablicy"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Pamyłka pierajmienavańnia tablicy %1$s u %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tablica %s była pierajmienavanaja ŭ %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
@@ -7434,6 +7404,38 @@ msgstr "Aznačeńnie PARTITION"
msgid "+ Add a new value"
msgstr "Dadać novaha karystalnika"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Dapuščalny šlach da malunkaŭ temy %s nia znojdzieny!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Papiaredni prahlad niedastupny."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "hetaja"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Tema pa zmoŭčańni %s nia znojdzienaja!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s nia znojdzienaja!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Nia znojdzieny šlach da temy %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -7501,8 +7503,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()."
@@ -8567,8 +8569,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 ""
"Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic "
"pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, "
diff --git a/po/bg.po b/po/bg.po
index 6f5f9e3b1f..5f39ffd132 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
-"PO-Revision-Date: 2011-06-14 08:31+0200\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
+"PO-Revision-Date: 2011-06-22 16:50+0200\n"
+"Last-Translator: \n"
"Language-Team: bulgarian \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: Pootle 2.0.5\n"
@@ -48,10 +48,10 @@ msgstr "Търсене"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Търсене"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Изпълнение"
@@ -132,9 +132,9 @@ msgstr "Коментар към БД: "
msgid "Table comments"
msgstr "Коментари към таблицата"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Коментари към таблицата"
msgid "Column"
msgstr "Kолона"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Kолона"
msgid "Type"
msgstr "Тип"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "Свързана към"
msgid "Comments"
msgstr "Коментари"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "Коментари"
msgid "No"
msgstr "Не"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -332,8 +333,8 @@ msgstr "Добавяне на ограничение"
msgid "Switch to copied database"
msgstr "Показване на копираната БД"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -497,8 +498,8 @@ msgstr "SQL заявка към БД %s:"
msgid "Submit Query"
msgstr "Изпълни заявката"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -606,7 +607,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Отказан достъп"
@@ -674,10 +675,8 @@ msgid "Search in database"
msgstr "Търсене в БД"
#: db_search.php:300
-#, fuzzy
-#| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgid "Words or values to search for (wildcard: \"%\"):"
-msgstr "Дума(и) или стойност(и) за търсене (знак за заместване: \"%\"):"
+msgstr "Думи или стойности за търсене (знак за заместване: \"%\"):"
#: db_search.php:305
msgid "Find:"
@@ -688,10 +687,8 @@ msgid "Words are separated by a space character (\" \")."
msgstr "Думите трябва да се разделят с интервал (\" \")."
#: db_search.php:323
-#, fuzzy
-#| msgid "Inside table(s):"
msgid "Inside tables:"
-msgstr "В таблицата(ите):"
+msgstr "В таблици:"
#: db_search.php:353
msgid "Inside column:"
@@ -727,8 +724,8 @@ msgstr "Проследяването е неактивно."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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"
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -746,7 +743,7 @@ msgstr "Репликация"
msgid "Sum"
msgstr "Сума"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s е хранилището на данни по подразбиране на този MySQL сървър."
@@ -795,8 +792,8 @@ msgstr "Преглед за печат"
msgid "Empty"
msgstr "Изчистване"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -869,9 +866,9 @@ msgstr "Съвременен"
msgid "Status"
msgstr "Състояние"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -966,8 +963,8 @@ msgstr "Схемата беше записана във файл %s."
#: import.php:58
#, 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."
msgstr ""
"Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се "
"към %sdдокументацията%s за да намерите начин да избегнете това ограничение."
@@ -1109,10 +1106,8 @@ msgstr "Това не е число!"
#. l10n: Default description for the y-Axis of Charts
#: js/messages.php:49
-#, fuzzy
-#| msgid "Total"
msgid "Total count"
-msgstr "Общо"
+msgstr "Общ брой"
#: js/messages.php:52
msgid "The host name is empty!"
@@ -1148,11 +1143,11 @@ msgstr "Изтриване на маркираните потребители"
msgid "Close"
msgstr "Затваряне"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Редакция"
@@ -1223,20 +1218,16 @@ msgid "Processes"
msgstr "Процеси"
#: js/messages.php:83
-#, fuzzy
-#| msgid "Connections"
msgid "Connections / Processes"
-msgstr "Конекции"
+msgstr "Конекции / Процеси"
#: js/messages.php:84
msgid "Issued queries since last refresh"
msgstr ""
#: js/messages.php:85
-#, fuzzy
-#| msgid "SQL queries"
msgid "Issued queries"
-msgstr "SQL заявки"
+msgstr "Подадени заявки"
#: js/messages.php:87 server_status.php:402
msgid "Query statistics"
@@ -1693,222 +1684,12 @@ msgstr "минута"
msgid "Second"
msgstr "секунда"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Размер шрифт"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Качваният файл надвижава директивата upload_max_filesize от php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Подаденият файл беше само частично качен."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Липсва временна папка."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Запазването на файл на диска се провали."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Качването на файлът беше спряно от разширение."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Неизвестна грешка при качване."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Грешка при преместване на качения файл, вж. [a@./Documentation."
-"html#faq1_11@Documentation]ЧЗВ 1.11[/a]"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Не е дефиниран индекс!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Индекси"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Уникално"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Кардиналност"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Коментар"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Главния ключ беше изтрит"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Индекса %s беше изтрит"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Индексите %1$s и %2$s изглеждат равнозначни и един от двата вероятно може да "
-"бъде премахнат."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "БД"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Грешка"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d повлиян ред."
-msgstr[1] "%1$d повлияни реда."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d ред изтрит."
-msgstr[1] "%1$d реда изтрити."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d ред добавен."
-msgstr[1] "%1$d реда добавени."
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not save configuration"
-msgid "Could not save recent table"
-msgstr "Конфигурацията не може да бъде запазена"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Отваряни таблици"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Няма наскоро отваряни таблици"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Няма детайлна информация за състоянието на това хранилище на данни."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s е разрешен на този MySQL сървър."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s е изключен за този MySQL сървър."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Този MySQL сървър не поддържа хранилището на данни %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Невалидна БД"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Невалидно име на таблица"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Грешка при преименуване на таблица %1$s в %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Таблица %s беше преименувана на %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Не открито изображение към тема %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Прегледът не е достъпен."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "взимам я"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Темата по подразбиране %s не е намерена!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Тема %s не е намерена!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Не е открит път към тема %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Връзката не може да бъде осъществена: невалидни настройки."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Добре дошли в %s"
@@ -1916,8 +1697,8 @@ msgstr "Добре дошли в %s"
#: libraries/auth/config.auth.lib.php:106
#, 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, за да го създадете"
@@ -1934,56 +1715,56 @@ msgstr ""
"config.inc.php файла и да се уверите, че те отговарят на информацията "
"предоставена от администратора на MySQL сървъра."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Вход"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin документация"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "Можете да въведете хост/IP адрес и порт, разделени с интервал."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Сървър:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Име:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Парола:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Избор на сървър"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Оттук нататък са необходими бисквитки."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "Входът без парола е забранен от конфигурацията (вж. AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Няма активност през последните %s секунди; моля влезте отново"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Невъзможен вход в MySQL сървъра"
@@ -2022,6 +1803,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Грешка"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2074,6 +1863,11 @@ msgstr "Таблици"
msgid "Data"
msgstr "Данни"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Индекси"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2102,14 +1896,14 @@ msgstr "Проверка на правата"
#: libraries/common.inc.php:587
#, fuzzy
-#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
-msgstr "Конфигурацията не може да бъде запазена"
+#| msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
+msgstr "Конфигурацията не може да бъде прочетена"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2354,77 +2148,9 @@ msgstr "Няма файлве за качване"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "И двете"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Ляво"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Дясно"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Отворен"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Затворен"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "структура"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "данни"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "структура и данни"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "пълни INSERT-и"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "разширени INSERT-и"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "и двете по-горе"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "никое от горните"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Размер шрифт"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3056,6 +2782,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "БД"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Опции за показване на БД"
@@ -4526,6 +4258,78 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "И двете"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Ляво"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Дясно"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Отворен"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Затворен"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "структура"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "данни"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "структура и данни"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "пълни INSERT-и"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "разширени INSERT-и"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "и двете по-горе"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "никое от горните"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4544,10 +4348,9 @@ msgid "Export of event %s"
msgstr "Експорт като %s"
#: libraries/db_events.inc.php:34
-#, fuzzy, php-format
-#| msgid "Export as %s"
+#, php-format
msgid "Export of event \"%s\""
-msgstr "Експорт като %s"
+msgstr "Експорт на събитието \"%s\""
#: libraries/db_events.inc.php:40
#, fuzzy, php-format
@@ -4561,10 +4364,8 @@ msgid "Events"
msgstr "Събития"
#: libraries/db_events.inc.php:58 libraries/db_events.inc.php:60
-#, fuzzy
-#| msgid "There are no files to upload"
msgid "There are no events to display."
-msgstr "Няма файлве за качване"
+msgstr "Няма събития."
#: libraries/db_events.inc.php:67 libraries/db_routines.lib.php:690
#: libraries/db_routines.lib.php:846 libraries/db_routines.lib.php:1214
@@ -4591,10 +4392,25 @@ msgid "Turn it off"
msgstr ""
#: libraries/db_events.inc.php:141
-#, fuzzy
-#| msgid "Add a new server"
msgid "Add a new Event"
-msgstr "Добавяне на нов сървър"
+msgstr "Добавяне на събитие"
+
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Няма отговор от сървъра"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Подробности..."
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
@@ -4630,10 +4446,8 @@ msgid "Triggers"
msgstr ""
#: libraries/db_routines.lib.php:659
-#, fuzzy
-#| msgid "Details..."
msgid "Details"
-msgstr "Подробности..."
+msgstr "Подробности"
#: libraries/db_routines.lib.php:662
#, fuzzy
@@ -4642,20 +4456,17 @@ msgid "Routine name"
msgstr "Име на колона"
#: libraries/db_routines.lib.php:679
-#, fuzzy, php-format
-#| msgid "Change"
+#, php-format
msgid "Change to %s"
-msgstr "Промяна"
+msgstr "Промяна на %s"
#: libraries/db_routines.lib.php:684
msgid "Parameters"
msgstr ""
#: libraries/db_routines.lib.php:689
-#, fuzzy
-#| msgid "Creation"
msgid "Direction"
-msgstr "Дата на създаване"
+msgstr "Посока"
#: libraries/db_routines.lib.php:692 libraries/tbl_properties.inc.php:105
msgid "Length/Values"
@@ -4670,9 +4481,9 @@ msgstr "Дължина/Стойности"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4729,6 +4540,11 @@ msgstr "Сигурност"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Коментар"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4793,23 +4609,6 @@ msgstr ""
"Може да има приблизителна стойност. Виж [a@./Documentation."
"html#faq3_11@Documentation]FAQ 3.11[/a]"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Няма отговор от сървъра"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Подробности..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4950,8 +4749,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:275
@@ -5651,8 +5450,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -5935,6 +5734,44 @@ msgstr "Изглед"
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "Качваният файл надвижава директивата upload_max_filesize от php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Подаденият файл беше само частично качен."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Липсва временна папка."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Запазването на файл на диска се провали."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Качването на файлът беше спряно от разширение."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Неизвестна грешка при качване."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Грешка при преместване на качения файл, вж. [a@./Documentation."
+"html#faq1_11@Documentation]ЧЗВ 1.11[/a]"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5954,40 +5791,6 @@ msgstr "SQL резултат"
msgid "Generated by"
msgstr "Генерирано от"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6047,6 +5850,40 @@ msgstr "Име на колона"
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6069,6 +5906,42 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Не е дефиниран индекс!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Уникално"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Кардиналност"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Главния ключ беше изтрит"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Индекса %s беше изтрит"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Индексите %1$s и %2$s изглеждат равнозначни и един от двата вероятно може да "
+"бъде премахнат."
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6079,6 +5952,27 @@ msgstr "Няма"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d повлиян ред."
+msgstr[1] "%1$d повлияни реда."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d ред изтрит."
+msgstr[1] "%1$d реда изтрити."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d ред добавен."
+msgstr[1] "%1$d реда добавени."
+
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "От"
@@ -6317,6 +6211,20 @@ msgstr ""
msgid "This format has no options"
msgstr "Този формат няма опции"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Could not save recent table"
+msgstr "Конфигурацията не може да бъде запазена"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Отваряни таблици"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Няма наскоро отваряни таблици"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "не е OK"
@@ -6690,61 +6598,6 @@ msgstr "Различия"
msgid "Target database"
msgstr "Целева БД"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Изпълняване на SQL заявка/заявки на сървър %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Изпълнение на SQL заявка/заявки към БД %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Изчистване"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Колони"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Отбелязване SQL заявката"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Всеки потребител да има достъп до тази белязка"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Замяна белязката със същото име"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Не препокривайте тази заявка извън този прозорец"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Разделител"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Показване на заявката отново "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Само показване"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Местоположение на текстовия файл"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "директорията за upload на web сървъра"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6808,6 +6661,61 @@ msgstr "Невалиден идентификатор"
msgid "Unknown Punctuation String"
msgstr "Непознат пунктуационен низ"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Изпълняване на SQL заявка/заявки на сървър %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Изпълнение на SQL заявка/заявки към БД %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Изчистване"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Колони"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Отбелязване SQL заявката"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Всеки потребител да има достъп до тази белязка"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Замяна белязката със същото име"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Не препокривайте тази заявка извън този прозорец"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Разделител"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Показване на заявката отново "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Само показване"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Местоположение на текстовия файл"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "директорията за upload на web сървъра"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6815,8 +6723,50 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"SQL валидаторът не може да бъде инициализиран. Моля проверете дали са "
-"инсталирани необходимите PHP разширения, както е описано в %sдокументацията"
-"%s."
+"инсталирани необходимите PHP разширения, както е описано в %sдокументацията%"
+"s."
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Няма детайлна информация за състоянието на това хранилище на данни."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s е разрешен на този MySQL сървър."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s е изключен за този MySQL сървър."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Този MySQL сървър не поддържа хранилището на данни %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Невалидна БД"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Невалидно име на таблица"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Грешка при преименуване на таблица %1$s в %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Таблица %s беше преименувана на %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
@@ -6937,6 +6887,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "+ Добавяне на нова стойност"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Не открито изображение към тема %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Прегледът не е достъпен."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "тази ще е"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Темата по подразбиране %s не е намерена!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Тема %s не е намерена!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Не е открит път към тема %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7490,8 +7472,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:302
msgid "Save to browser's storage"
@@ -7941,8 +7923,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. Съдържанието на тази таблица може да се различава от "
@@ -10083,8 +10065,8 @@ msgid ""
"No themes support; please check your configuration and/or your themes in "
"directory %s."
msgstr ""
-"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка "
-"%s."
+"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка %"
+"s."
#: themes.php:41
msgid "Get more themes!"
diff --git a/po/bn.po b/po/bn.po
index 91d8b4f42d..c9783eb5f4 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
"Last-Translator: Nobin নবীন \n"
"Language-Team: bangla \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: Pootle 2.0.5\n"
@@ -48,10 +48,10 @@ msgstr "খুঁজুন"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "খুঁজুন"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "যাও"
@@ -130,9 +130,9 @@ msgstr "ডাটাবেজ মন্তব্যসমূহঃ"
msgid "Table comments"
msgstr "টেবিলের মন্তব্য সমূহ"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -141,12 +141,12 @@ msgstr "টেবিলের মন্তব্য সমূহ"
msgid "Column"
msgstr "কলামের"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -156,9 +156,9 @@ msgstr "কলামের"
msgid "Type"
msgstr "ধরন"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -196,12 +196,13 @@ msgstr "সংযুক্তি হবে"
msgid "Comments"
msgstr "মন্তব্যসমূহ"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -212,17 +213,17 @@ msgstr "মন্তব্যসমূহ"
msgid "No"
msgstr "না"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -333,8 +334,8 @@ msgstr "constraints সংযুক্ত করুন"
msgid "Switch to copied database"
msgstr "অনুলিপি ডাটাবেজ এ পরিবর্তিত হবে"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -508,8 +509,8 @@ msgstr "SQL query on database %s:"
msgid "Submit Query"
msgstr "Submit Query"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -612,7 +613,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "প্রবেশ নিষেধ"
@@ -740,8 +741,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -759,7 +760,7 @@ msgstr "Replication"
msgid "Sum"
msgstr "যোগফল"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s MySQL সার্ভার এর ডিফল্ট ষ্টোরেজ ইঞ্জিন"
@@ -808,8 +809,8 @@ msgstr "Print view"
msgid "Empty"
msgstr "খালি"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -890,9 +891,9 @@ msgstr ""
msgid "Status"
msgstr "অবস্থা"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -990,11 +991,11 @@ msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে
#: import.php:58
#, 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."
msgstr ""
-"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."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1182,11 +1183,11 @@ msgstr "Remove selected users"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "সম্পাদনা কর"
@@ -1811,225 +1812,12 @@ msgstr "in use"
msgid "Second"
msgstr "per second"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "ফন্ট এর আকার"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-#, fuzzy
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। "
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "No index defined!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "ইন্ডেস্ক সমূহ"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unique"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinality"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "মন্তব্যসমূহ"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "The primary key has been dropped"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "%s ইন্ডেস্ক মুছে ফেলা হয়েছে"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "ডাটাবেজসমূহ Databases"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "ভূল"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "No rows selected"
-msgstr[1] "No rows selected"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "No rows selected"
-msgstr[1] "No rows selected"
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "কোন টেবিল নাই"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-msgid "There are no recent tables"
-msgstr "টেবিল পরীক্ষা কর"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"There is no detailed status information available for this storage engine."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s is available on this MySQL server."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "MySQL সার্ভার এর জন্য %s বন্ধ করা হয়েছে ."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "এই MySQL সার্ভার %s ধরনের স্টোরেজ ইঞ্জিন সমর্থন করেনা."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Invalid database"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Invalid table name"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Error renaming table %1$s to %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Table %s has been renamed to %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "No valid image path for theme %s found!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "No preview available."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "take it"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Default theme %s not found!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Theme %s not found!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Theme path not found for theme %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "সংযোগ স্থাপন করা যায়নিঃ invalid settings."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Welcome to %s"
@@ -2037,8 +1825,8 @@ msgstr "Welcome to %s"
#: libraries/auth/config.auth.lib.php:106
#, 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 ব্যাবহার "
"করে একটি তৈরী করতে পারেন "
@@ -2055,56 +1843,56 @@ msgstr ""
"পরীক্ষা করুন এবং তা আপনার Mysql সার্ভারের অ্যাডমিনিষ্টেট্রররের দেওয়া তথ্যের অনুরুপ "
"কিনা তা নিশ্চত করুন।"
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "লগ ইন"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin documentation"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "সার্ভার"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "ব্যাবহারকারী"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "পাসওয়ার্ড"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Server Choice"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Cookies must be enabled past this point."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "No activity within %s seconds; please log in again"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "MySQL সার্ভার এ লগ ইন করা যায়নি"
@@ -2145,6 +1933,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "MySQL connection collation"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "ভূল"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2197,6 +1993,11 @@ msgstr "টেবিলসমূহ"
msgid "Data"
msgstr "ডাটা"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "ইন্ডেস্ক সমূহ"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2229,13 +2030,13 @@ msgstr "সুবিধাসমূহ পরীক্ষা করুন"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2485,86 +2286,9 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Unclosed quote"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Structure"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Structure and data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Complete inserts"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Extended inserts"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "ফন্ট এর আকার"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3239,6 +2963,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "ডাটাবেজসমূহ Databases"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4793,6 +4523,87 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Unclosed quote"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Structure"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Structure and data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Complete inserts"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Extended inserts"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4860,6 +4671,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "একটি নতুন ইউজার যোগ করুন"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "The server is not responding"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(or the local MySQL server's socket is not correctly configured)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4932,9 +4760,9 @@ msgstr "Length/Values"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4992,6 +4820,12 @@ msgstr "Query type"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "মন্তব্যসমূহ"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -5053,23 +4887,6 @@ msgid ""
"3.11[/a]"
msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। "
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "The server is not responding"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(or the local MySQL server's socket is not correctly configured)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5238,12 +5055,12 @@ msgstr ""
#| "happen: %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:275
msgid "use this for future exports"
@@ -6005,8 +5822,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6326,6 +6143,43 @@ msgstr "View"
msgid "Export contents"
msgstr "Export type"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+#, fuzzy
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। "
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6343,42 +6197,6 @@ msgstr "SQL result"
msgid "Generated by"
msgstr "Generated by"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "কোন ডাটাবেজ নাই"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "কোন ডাটাবেজ নাই"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6442,6 +6260,42 @@ msgstr "কলামের নাম"
msgid "This plugin does not support compressed imports!"
msgstr "This plugin does not support compressed imports!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "কোন ডাটাবেজ নাই"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "কোন ডাটাবেজ নাই"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6466,6 +6320,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "No index defined!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unique"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinality"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "The primary key has been dropped"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "%s ইন্ডেস্ক মুছে ফেলা হয়েছে"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6478,6 +6366,29 @@ msgstr "কোনটিই নয়"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "No rows selected"
+msgstr[1] "No rows selected"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "No rows selected"
+msgstr[1] "No rows selected"
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6720,6 +6631,22 @@ msgstr ""
msgid "This format has no options"
msgstr "This format has no options"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "কোন টেবিল নাই"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+msgid "There are no recent tables"
+msgstr "টেবিল পরীক্ষা কর"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "ঠিক নাই"
@@ -7113,64 +7040,6 @@ msgstr ""
msgid "Target database"
msgstr "ডাটাবে এ খুজুঁনSearch in database"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Run SQL query/queries on server %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Run SQL query/queries on database %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "ক্যালেন্ডার"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "কলামের নাম"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "এই SQL query টি বুকমার্ক করুন"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "একই নামের বর্তমান বুকমার্ক প্রতিস্থাপন করুন"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Do not overwrite this query from outside the window"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Delimiter"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Show this query here again "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "শুধু দেখ"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Location of the text file"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web server upload directory"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7233,6 +7102,64 @@ msgstr "Invalid Identifer"
msgid "Unknown Punctuation String"
msgstr "Unknown Punctuation String"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Run SQL query/queries on server %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Run SQL query/queries on database %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "ক্যালেন্ডার"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "কলামের নাম"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "এই SQL query টি বুকমার্ক করুন"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "একই নামের বর্তমান বুকমার্ক প্রতিস্থাপন করুন"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Do not overwrite this query from outside the window"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Delimiter"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Show this query here again "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "শুধু দেখ"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Location of the text file"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web server upload directory"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7242,6 +7169,49 @@ msgstr ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"There is no detailed status information available for this storage engine."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s is available on this MySQL server."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "MySQL সার্ভার এর জন্য %s বন্ধ করা হয়েছে ."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "এই MySQL সার্ভার %s ধরনের স্টোরেজ ইঞ্জিন সমর্থন করেনা."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Invalid database"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Invalid table name"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Error renaming table %1$s to %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Table %s has been renamed to %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7372,6 +7342,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "একটি নতুন ইউজার যোগ করুন"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "No valid image path for theme %s found!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "No preview available."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "take it"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Default theme %s not found!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Theme %s not found!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Theme path not found for theme %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8486,13 +8488,13 @@ 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 ""
"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."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
diff --git a/po/br.po b/po/br.po
index ae00171084..bec8aea752 100644
--- a/po/br.po
+++ b/po/br.po
@@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
-"PO-Revision-Date: 2011-06-22 10:13+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
+"PO-Revision-Date: 2011-06-22 20:52+0200\n"
"Last-Translator: \n"
"Language-Team: LANGUAGE \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: Pootle 2.0.5\n"
@@ -52,10 +52,10 @@ msgstr "Klask"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -68,18 +68,18 @@ msgstr "Klask"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Mont"
@@ -136,9 +136,9 @@ msgstr "Evezhiadenn diwar-benn an diaz roadennoù : "
msgid "Table comments"
msgstr "Evezhiadennoù diwar-benn an daolenn"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -147,12 +147,12 @@ msgstr "Evezhiadennoù diwar-benn an daolenn"
msgid "Column"
msgstr "Bann"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -162,9 +162,9 @@ msgstr "Bann"
msgid "Type"
msgstr "Seurt"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -202,12 +202,13 @@ msgstr "Liammet ouzh"
msgid "Comments"
msgstr "Evezhiadennoù"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -218,17 +219,17 @@ msgstr "Evezhiadennoù"
msgid "No"
msgstr "Ket"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -336,8 +337,8 @@ msgstr "Ouzhpennañ ar strishadurioù"
msgid "Switch to copied database"
msgstr "Mont d'an diaz roadennoù eilet"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -501,8 +502,8 @@ msgstr "Reked SQL ouzh an diaz roadennoù %s:"
msgid "Submit Query"
msgstr "Kas ar reked"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -523,22 +524,22 @@ msgstr ""
#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
-msgstr ""
+msgstr "Distroet ez eus un disoc'h goullo gant MySQL (linenn ebet)"
#: db_routines.php:190 db_routines.php:290 db_routines.php:295
#: db_routines.php:319
#, php-format
msgid "Query \"%s\" failed"
-msgstr ""
+msgstr "C'hwitet eo bet ar reked \"%s\""
#: db_routines.php:191 db_routines.php:291 db_routines.php:296
#: db_routines.php:306 db_routines.php:320 libraries/common.lib.php:609
msgid "MySQL said: "
-msgstr ""
+msgstr "respontet eo bet gant MySQL : "
#: db_routines.php:208 db_routines.php:263 db_routines.php:402
msgid "Error in processing request"
-msgstr ""
+msgstr "Fazi en ur seveniñ ar reked"
#: db_routines.php:209 db_routines.php:264 db_routines.php:403
#, php-format
@@ -598,49 +599,49 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
-msgstr ""
+msgstr "Moned nac'het"
#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
-msgstr ""
+msgstr "unan eus ar gerioù da nebeutañ"
#: db_search.php:67 db_search.php:310
msgid "all words"
-msgstr ""
+msgstr "an holl c'herioù"
#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
-msgstr ""
+msgstr "ar frazenn-rik"
#: db_search.php:69 db_search.php:312
msgid "as regular expression"
-msgstr ""
+msgstr "evel un droienn reoliek"
#: db_search.php:231
#, php-format
msgid "Search results for \"%s\" %s:"
-msgstr ""
+msgstr "Disoc'hoù ar c'hlask evit \"%s\" %s :"
#: db_search.php:249
#, php-format
msgid "%s match inside table %s"
msgid_plural "%s matches inside table %s"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "%s glotadenn en daolenn %s "
+msgstr[1] "%s klotadenn en daolenn %s "
#: db_search.php:256 libraries/common.lib.php:2764
#: libraries/common.lib.php:2949 libraries/common.lib.php:2950
#: libraries/tbl_links.inc.php:55 tbl_structure.php:599
msgid "Browse"
-msgstr ""
+msgstr "Furchal"
#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
-msgstr ""
+msgstr "Diverkañ ar c'hlotadennoù a-ziouzh an daolenn %s ?"
#: db_search.php:261 libraries/display_tbl.lib.php:1323
#: libraries/display_tbl.lib.php:2351
@@ -652,18 +653,18 @@ msgstr ""
#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
-msgstr ""
+msgstr "Diverkañ"
#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Hollad : %s glotadenn"
+msgstr[1] "Hollad : %s klotadenn"
#: db_search.php:297
msgid "Search in database"
-msgstr ""
+msgstr "Klask en diaz roadennoù"
#: db_search.php:300
msgid "Words or values to search for (wildcard: \"%\"):"
@@ -671,11 +672,11 @@ msgstr ""
#: db_search.php:305
msgid "Find:"
-msgstr ""
+msgstr "Kavout :"
#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
-msgstr ""
+msgstr "Dispartiet e vez ar gerioù gant un esaouenn (\" \")."
#: db_search.php:323
msgid "Inside tables:"
@@ -683,61 +684,63 @@ msgstr ""
#: db_search.php:353
msgid "Inside column:"
-msgstr ""
+msgstr "Er bann : "
#: db_structure.php:60
msgid "No tables found in database"
-msgstr ""
+msgstr "N'eus bet kavet taolenn ebet en diaz roadennoù."
#: db_structure.php:270 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
-msgstr ""
+msgstr "Goullonderet eo bet an daolenn %s"
#: db_structure.php:279 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
-msgstr ""
+msgstr "Diverket eo bet ar Gweled %s"
#: db_structure.php:279 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
-msgstr ""
+msgstr "Diverket eo bet an daolenn %s"
#: db_structure.php:286 tbl_create.php:295
msgid "Tracking is active."
-msgstr ""
+msgstr "Oberiant eo an heuliañ."
#: db_structure.php:288 tbl_create.php:297
msgid "Tracking is not active."
-msgstr ""
+msgstr "N'eo ket oberiant an heuliañ."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
msgid "View"
-msgstr ""
+msgstr "Gwelet"
#: db_structure.php:437 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
#: server_replication.php:162 server_status.php:271
msgid "Replication"
-msgstr ""
+msgstr "Eilañ"
#: db_structure.php:441
msgid "Sum"
-msgstr ""
+msgstr "Sammad"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
-msgstr ""
+msgstr "War ar servijer MySQL-mañ ez eo %s ar c'heflusker stokañ dre ziouer."
#: db_structure.php:476 db_structure.php:493 db_structure.php:494
#: libraries/display_tbl.lib.php:2376 libraries/display_tbl.lib.php:2381
@@ -745,19 +748,19 @@ msgstr ""
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:587
#: tbl_structure.php:596
msgid "With selected:"
-msgstr ""
+msgstr "Evit ar re zo diuzet : "
#: db_structure.php:479 libraries/display_tbl.lib.php:2371
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:590
msgid "Check All"
-msgstr ""
+msgstr "Askañ pep tra"
#: db_structure.php:483 libraries/display_tbl.lib.php:2372
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:594
msgid "Uncheck All"
-msgstr ""
+msgstr "Diaskañ pep tra"
#: db_structure.php:488
msgid "Check tables having overhead"
@@ -770,29 +773,29 @@ msgstr ""
#: libraries/tbl_links.inc.php:80 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
-msgstr ""
+msgstr "Ezporzhiañ"
#: db_structure.php:498 db_structure.php:553
#: libraries/display_tbl.lib.php:2478 tbl_structure.php:628
#: tbl_structure.php:630
msgid "Print view"
-msgstr ""
+msgstr "Stumm da voullañ"
#: db_structure.php:502 libraries/common.lib.php:2958
#: libraries/common.lib.php:2959
msgid "Empty"
-msgstr ""
+msgstr "Goullonderiñ"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
-msgstr ""
+msgstr "Diverkañ"
#: db_structure.php:506 tbl_operations.php:604
msgid "Check table"
-msgstr ""
+msgstr "Gwiriañ an daolenn"
#: db_structure.php:508 tbl_operations.php:653 tbl_structure.php:845
#: tbl_structure.php:847
@@ -857,9 +860,9 @@ msgstr ""
msgid "Status"
msgstr ""
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -951,8 +954,8 @@ msgstr ""
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1118,11 +1121,11 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr ""
@@ -1649,216 +1652,12 @@ msgstr ""
msgid "Second"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr ""
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr ""
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr ""
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr ""
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr ""
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr ""
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr ""
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr ""
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr ""
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr ""
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr ""
@@ -1866,8 +1665,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
@@ -1878,56 +1677,56 @@ msgid ""
"the administrator of the MySQL server."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr ""
@@ -1966,6 +1765,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr ""
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2018,6 +1825,11 @@ msgstr ""
msgid "Data"
msgstr ""
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr ""
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2045,13 +1857,13 @@ msgid "Check Privileges"
msgstr ""
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr ""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2294,76 +2106,8 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr ""
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr ""
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr ""
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr ""
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr ""
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
+#: libraries/Config.class.php:1190
+msgid "Font size"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2994,6 +2738,12 @@ msgstr ""
msgid "LaTeX"
msgstr ""
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr ""
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4461,6 +4211,78 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr ""
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr ""
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr ""
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr ""
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr ""
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4524,6 +4346,23 @@ msgstr ""
msgid "Add a new Event"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4591,9 +4430,9 @@ msgstr ""
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4640,6 +4479,11 @@ msgstr ""
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr ""
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4696,23 +4540,6 @@ msgid ""
"3.11[/a]"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4851,8 +4678,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:275
@@ -5542,8 +5369,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -5824,6 +5651,42 @@ msgstr ""
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5841,40 +5704,6 @@ msgstr ""
msgid "Generated by"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -5934,6 +5763,40 @@ msgstr ""
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -5956,6 +5819,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr ""
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr ""
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr ""
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -5966,6 +5863,27 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr ""
@@ -6204,6 +6122,18 @@ msgstr ""
msgid "This format has no options"
msgstr ""
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr ""
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr ""
@@ -6573,6 +6503,57 @@ msgstr ""
msgid "Target database"
msgstr ""
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sql_query_form.lib.php:223
#, php-format
msgid "Run SQL query/queries on server %s"
@@ -6628,57 +6609,6 @@ msgstr ""
msgid "web server upload directory"
msgstr ""
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6686,6 +6616,48 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr ""
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -6790,6 +6762,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr ""
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7738,8 +7742,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 ""
#: server_privileges.php:1764
diff --git a/po/bs.po b/po/bs.po
index 2f348d6120..96edac7c46 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -47,10 +47,10 @@ msgstr "Pretraživanje"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "Pretraživanje"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Kreni"
@@ -129,9 +129,9 @@ msgstr "Komentar baze:"
msgid "Table comments"
msgstr "Komentari tabele"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "Komentari tabele"
msgid "Column"
msgstr "Imena kolona"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "Imena kolona"
msgid "Type"
msgstr "Tip"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,12 +197,13 @@ msgstr "Veze ka"
msgid "Comments"
msgstr "Komentari"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -213,17 +214,17 @@ msgstr "Komentari"
msgid "No"
msgstr "Ne"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -337,8 +338,8 @@ msgstr ""
msgid "Switch to copied database"
msgstr "Pređi na kopiranu tabelu"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -512,8 +513,8 @@ msgstr "SQL upit na bazi %s:"
msgid "Submit Query"
msgstr "Izvrši SQL upit"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -614,7 +615,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Ulaz nije dozvoljen"
@@ -742,8 +743,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -762,7 +763,7 @@ msgstr "Relacije"
msgid "Sum"
msgstr "Ukupno"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
@@ -811,8 +812,8 @@ msgstr "Za štampu"
msgid "Empty"
msgstr "Isprazni"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -890,9 +891,9 @@ msgstr ""
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -990,8 +991,8 @@ msgstr "Sadržaj baze je sačuvan u fajl %s."
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1166,11 +1167,11 @@ msgstr "Ukloni izabrane korisnike"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Promeni"
@@ -1791,218 +1792,12 @@ msgstr "se koristi"
msgid "Second"
msgstr "u sekundi"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr ""
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Ključ nije definisan!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Ključevi"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Jedinstveni"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinalnost"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Komentari"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primarni ključ je obrisan"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Ključ %s je obrisan"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Baze"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Greška"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Nema tabela"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabeli %s promjenjeno ime u %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Dobrodošli na %s"
@@ -2010,8 +1805,8 @@ msgstr "Dobrodošli na %s"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
@@ -2026,57 +1821,57 @@ msgstr ""
"php i uvjerite se da odgovaraju podacima koje ste dobili od administratora "
"MySQL servera."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Prijavljivanje"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin dokumentacija"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
#, fuzzy
msgid "Server:"
msgstr "Server"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Korisničko ime:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Lozinka:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Izbor servera"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivirani."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Ne mogu da se prijavim na MySQL server"
@@ -2115,6 +1910,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Greška"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2167,6 +1970,11 @@ msgstr "Tabele"
msgid "Data"
msgstr "Podaci"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Ključevi"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2196,13 +2004,13 @@ msgid "Check Privileges"
msgstr "Provjeri privilegije"
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr ""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2448,85 +2256,8 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Navodnik nije zatvoren"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Struktura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Struktura i podatci"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Kompletan INSERT (sa imenima polja)"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Prošireni INSERT"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
+#: libraries/Config.class.php:1190
+msgid "Font size"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -3197,6 +2928,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Baze"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4724,6 +4461,87 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Navodnik nije zatvoren"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Struktura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Struktura i podatci"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Kompletan INSERT (sa imenima polja)"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Prošireni INSERT"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4789,6 +4607,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "Dodaj novog korisnika"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4861,9 +4696,9 @@ msgstr "Dužina/Vrijednost*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4922,6 +4757,12 @@ msgstr "Vrsta upita"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Komentari"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4982,23 +4823,6 @@ msgid ""
"3.11[/a]"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5160,8 +4984,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:275
@@ -5891,8 +5715,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6201,6 +6025,42 @@ msgstr ""
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6218,41 +6078,6 @@ msgstr "SQL rezultat"
msgid "Generated by"
msgstr "Generirao"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Baza ne postoji"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6314,6 +6139,41 @@ msgstr "Imena kolona"
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Baza ne postoji"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6336,6 +6196,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Ključ nije definisan!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Jedinstveni"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinalnost"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primarni ključ je obrisan"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Ključ %s je obrisan"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6348,6 +6242,27 @@ msgstr "nema"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6596,6 +6511,19 @@ msgstr ""
msgid "This format has no options"
msgstr "Ne postoje opcije za ovaj format"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Nema tabela"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "nije u redu"
@@ -6988,63 +6916,6 @@ msgstr ""
msgid "Target database"
msgstr "Pretraživanje baze"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Izvrši SQL upit(e) na bazi %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Izvrši SQL upit(e) na bazi %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Imena kolona"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Obilježi SQL-upit"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Ne prepisuj ovaj upit izvan prozora"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Prikaži ponovo ovaj upit"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Vidi samo"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Lokacija tekstualne datoteke"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "direkcija za slanje web servera "
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7107,6 +6978,63 @@ msgstr "Neispravan identifikator"
msgid "Unknown Punctuation String"
msgstr "Nepoznat string interpunkcije"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Izvrši SQL upit(e) na bazi %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Izvrši SQL upit(e) na bazi %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Imena kolona"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Obilježi SQL-upit"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Ne prepisuj ovaj upit izvan prozora"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Prikaži ponovo ovaj upit"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Vidi samo"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Lokacija tekstualne datoteke"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "direkcija za slanje web servera "
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7116,6 +7044,48 @@ msgstr ""
"SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane "
"neophodne PHP ekstenzije opisane u %sdokumentaciji%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabeli %s promjenjeno ime u %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7244,6 +7214,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Dodaj novog korisnika"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8318,8 +8320,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici."
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 "
diff --git a/po/ca.po b/po/ca.po
index 482e832d50..d7c2024dbd 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-02-23 09:57+0200\n"
"Last-Translator: Xavier Navarro \n"
"Language-Team: catalan \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: Pootle 2.0.5\n"
@@ -48,10 +48,10 @@ msgstr "Cerca"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Cerca"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Executa"
@@ -132,9 +132,9 @@ msgstr "Comentaris de la base de dades: "
msgid "Table comments"
msgstr "Comentaris de la taula"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Comentaris de la taula"
msgid "Column"
msgstr "Columna"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Columna"
msgid "Type"
msgstr "Tipus"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "Enllaços a"
msgid "Comments"
msgstr "Comentaris"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "Comentaris"
msgid "No"
msgstr "No"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -332,8 +333,8 @@ msgstr "Afegeix restriccions"
msgid "Switch to copied database"
msgstr "Canvia a la base de dades copiada"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -497,8 +498,8 @@ msgstr "Consulta SQL a la base de dades %s:"
msgid "Submit Query"
msgstr "Executa consulta"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -606,7 +607,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Accés denegat"
@@ -727,8 +728,8 @@ msgstr "El seguiment no està actiu."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
@@ -747,7 +748,7 @@ msgstr "Replicació"
msgid "Sum"
msgstr "Suma"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s és el motor d'emmagatzematge per defecte en aquest servidor MySQL."
@@ -796,8 +797,8 @@ msgstr "Imprimeix vista"
msgid "Empty"
msgstr "Buida"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -876,9 +877,9 @@ msgstr "Actualitzat"
msgid "Status"
msgstr "Estat"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -972,11 +973,11 @@ msgstr "El bolcat s'ha desat amb el nom d'arxiu %s."
#: import.php:58
#, 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."
msgstr ""
-"Probablement has triat d'enviar un arxiu massa gran. Consulta la "
-"%sdocumentació%s per trobar formes de modificar aquest límit."
+"Probablement has triat d'enviar un arxiu massa gran. Consulta la %"
+"sdocumentació%s per trobar formes de modificar aquest límit."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1163,11 +1164,11 @@ msgstr "Treu els usuaris triats"
msgid "Close"
msgstr "Tanca"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Edita"
@@ -1720,231 +1721,12 @@ msgstr "Minut"
msgid "Second"
msgstr "Segon"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Tamany de lletra"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"El tamany d'arxiu pujat supera la directiva upload_max_filesize de php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"El tamany d'arxiu pujat supera la directiva MAX_FILE_SIZE especificada al "
-"formulari HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Només s'ha pujat parcialment l'arxiu."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "No es troba la carpeta temporal."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Error en gravar l'arxiu al disc."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Pujada de l'arxiu aturada per l'extensió."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Error desconegut al pujar l'arxiu."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Error movent l'arxiu pujat, consulta la [a@./Documentation."
-"html#faq1_11@Documentation]PCF -FAQ- 1.11[/a]"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "No s'ha definit l'índex!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indexos"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Única"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Comprimit"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinalitat"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Comentari"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "S'ha esborrat la clau principal"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "S'ha esborrat l'índex %s"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Els indexos %1$s i %2$s semblen iguals i un d'ells possiblement es podria "
-"esborrar."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Bases de dades"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Error"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d fila afectada."
-msgstr[1] "%1$d files afectades."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d fila esborrada."
-msgstr[1] "%1$d files esborrades."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d fila inserida."
-msgstr[1] "%1$d files inserides."
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not save configuration"
-msgid "Could not save recent table"
-msgstr "No es pot desar la configuració"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Comptar les taules"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "No hi ha servidors configurats"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"No hi ha informació detallada de l'estat disponible per a aquest motor "
-"d'emmagatzematge."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s està disponible en aquest servidor MySQL."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s s'ha desactivat en aquest servidor MySQL."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Aquest servidor MySQL no suporta el motor d'emmagatzematge %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Base de dades incorrecte"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Nom de taula incorrecte"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Error reanomenant la taula %1$s a %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "La taula %s ha canviat de nom a %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "El camí de les imatges del tema %s és incorrecte!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "No hi ha vista prèvia disponible."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "agafa"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Tema per defecte %s no trobat!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s no trobat!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "No s'ha trobat el camí de les imatges del tema %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "No puc connectar: paràmetres incorrectes."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Benvingut a %s"
@@ -1952,8 +1734,8 @@ msgstr "Benvingut a %s"
#: libraries/auth/config.auth.lib.php:106
#, 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."
@@ -1970,44 +1752,44 @@ msgstr ""
"a l'arxiu config.inc.php i mira que es correspongui amb l'informació "
"facilitada per l'administrador del servidor de MySQL."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Identificació"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Documentació de phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "Pots entrar un nom d'amfitrió/adreça IP i port separat per espai."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Servidor:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Nom d'usuari:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Contrasenya:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Elecció de Servidor"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr ""
"A partir d'aquest punt és necessari tenir les galetes -cookies- activades."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -2015,14 +1797,14 @@ msgstr ""
"La configuració prohibeix la connexió sense contrasenya (veure "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Sense activitat des de fa %s segons o més, entra de nou"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "No podem connectar amb el servidor MySQL"
@@ -2063,6 +1845,14 @@ msgstr "Error de PBMS"
msgid "PBMS connection failed:"
msgstr "Error en la connexió PBMS:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Error"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "Ha fallat l'obtenció d'ínformació BLOB per a PBMS:"
@@ -2115,6 +1905,11 @@ msgstr "Taules"
msgid "Data"
msgstr "Dades"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indexos"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2144,13 +1939,13 @@ msgstr "Comprova els permisos"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "No es pot desar la configuració"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2397,79 +2192,9 @@ msgstr "No hi ha cap arxiu per pujar"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Ambdós"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-#, fuzzy
-#| msgid "Height"
-msgid "Right"
-msgstr "Alt"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Obert"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Tancat"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "estructura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "dades"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "estructura i dades"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Ràpid - mostra només les opcions mínimes a configurar"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Complet - mostra totes les opcions a configurar"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Complet - igual que el anterior, però sense l'opció ràpid/complet"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "completa insercions"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "insercions ampliades"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "ambdós anteriors"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "cap dels anteriors"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Tamany de lletra"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3126,6 +2851,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Bases de dades"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Opcions de visualització de les bases de dades"
@@ -4782,6 +4513,80 @@ msgstr "Control de contrasenya de phpMyAdmin buida al usar pmadb"
msgid "Incorrect IP address: %s"
msgstr "Adreça IP incorrecta: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Ambdós"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+#, fuzzy
+#| msgid "Height"
+msgid "Right"
+msgstr "Alt"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Obert"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Tancat"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "estructura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "dades"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "estructura i dades"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Ràpid - mostra només les opcions mínimes a configurar"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Complet - mostra totes les opcions a configurar"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Complet - igual que el anterior, però sense l'opció ràpid/complet"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "completa insercions"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "insercions ampliades"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "ambdós anteriors"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "cap dels anteriors"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4852,6 +4657,25 @@ msgstr ""
msgid "Add a new Event"
msgstr "Afegir un nou servidor"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+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 "
+"configuració."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "El servidor no respon"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(o el sòcol del servidor local MySQL no està configurat correctament)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Detalls..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4926,9 +4750,9 @@ msgstr "Longitud/Valors*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4987,6 +4811,11 @@ msgstr "Seguretat"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Comentari"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5053,25 +4882,6 @@ msgstr ""
"Pot ser aproximat. Veieu [a@./Documentation.html#faq3_11@Documentation]PCF -"
"FAQ- 3.11[/a]"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-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 "
-"configuració."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "El servidor no respon"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(o el sòcol del servidor local MySQL no està configurat correctament)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Detalls..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5213,12 +5023,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:275
@@ -6001,8 +5811,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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."
@@ -6309,6 +6119,47 @@ msgstr "Vistes"
msgid "Export contents"
msgstr "Exporta contingut"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"El tamany d'arxiu pujat supera la directiva upload_max_filesize de php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"El tamany d'arxiu pujat supera la directiva MAX_FILE_SIZE especificada al "
+"formulari HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Només s'ha pujat parcialment l'arxiu."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "No es troba la carpeta temporal."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Error en gravar l'arxiu al disc."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Pujada de l'arxiu aturada per l'extensió."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Error desconegut al pujar l'arxiu."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Error movent l'arxiu pujat, consulta la [a@./Documentation."
+"html#faq1_11@Documentation]PCF -FAQ- 1.11[/a]"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6328,42 +6179,6 @@ msgstr "Resultat SQL"
msgid "Generated by"
msgstr "Generat per"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Les següents estructures han estat creades o bé alterades. Aquí pots:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Veure el contingut d'una estructura fent clic sobre el seu nom"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Canviar qualsevol dels seus ajustaments fent clic al corresponents enllaç "
-"\"Opcions\""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Modificar la seva estructura, seguint l'enllaç \"Estructura\""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Vés a la base de dades"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "configuració"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Vés a la taula"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Vés a la vista"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6431,6 +6246,42 @@ msgstr "Nom de les columnes"
msgid "This plugin does not support compressed imports!"
msgstr "Aquesta extensió no suporta importacions comprimides!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Les següents estructures han estat creades o bé alterades. Aquí pots:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Veure el contingut d'una estructura fent clic sobre el seu nom"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Canviar qualsevol dels seus ajustaments fent clic al corresponents enllaç "
+"\"Opcions\""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Modificar la seva estructura, seguint l'enllaç \"Estructura\""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Vés a la base de dades"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "configuració"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Vés a la taula"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Vés a la vista"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6456,6 +6307,42 @@ msgstr ""
"El fitxer XML especificat era incorrecte o incomplet. Si us plau, arreglar-"
"lo i torna a intentar-ho."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "No s'ha definit l'índex!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Única"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Comprimit"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinalitat"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "S'ha esborrat la clau principal"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "S'ha esborrat l'índex %s"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Els indexos %1$s i %2$s semblen iguals i un d'ells possiblement es podria "
+"esborrar."
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6466,6 +6353,27 @@ msgstr "Cap"
msgid "Convert to Kana"
msgstr "Converteix a Kana"
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d fila afectada."
+msgstr[1] "%1$d files afectades."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d fila esborrada."
+msgstr[1] "%1$d files esborrades."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d fila inserida."
+msgstr[1] "%1$d files inserides."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6708,6 +6616,24 @@ msgstr "Recarrega el marc de navegació"
msgid "This format has no options"
msgstr "Aquest format no té opcions"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Could not save recent table"
+msgstr "No es pot desar la configuració"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Comptar les taules"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "No hi ha servidors configurats"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Incorrecte"
@@ -7093,61 +7019,6 @@ msgstr "Diferència"
msgid "Target database"
msgstr "Base de dades destinació"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Executar consulta/es SQL al servidor %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Executa consulta/s SQL a la Base de Dades %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Neteja"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Columnes"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Desa aquesta consulta SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Deixa accedir a cada usuari a aquesta consulta desada"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Reemplaça una consulta desada ja existent amb el mateix nom"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "No sobreescriure aquesta consulta des de fora de la finestra"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Separador"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Mostra aquesta consulta de nou "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Només mirar"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Ubicació de l'arxiu de text"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "directori de pujada d'arxius del servidor web"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7211,6 +7082,61 @@ msgstr "Identificador Incorrecte"
msgid "Unknown Punctuation String"
msgstr "Signe de puntuació desconegut"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Executar consulta/es SQL al servidor %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Executa consulta/s SQL a la Base de Dades %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Neteja"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Columnes"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Desa aquesta consulta SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Deixa accedir a cada usuari a aquesta consulta desada"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Reemplaça una consulta desada ja existent amb el mateix nom"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "No sobreescriure aquesta consulta des de fora de la finestra"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Separador"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Mostra aquesta consulta de nou "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Només mirar"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Ubicació de l'arxiu de text"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "directori de pujada d'arxius del servidor web"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7218,8 +7144,52 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%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."
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"No hi ha informació detallada de l'estat disponible per a aquest motor "
+"d'emmagatzematge."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s està disponible en aquest servidor MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s s'ha desactivat en aquest servidor MySQL."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Aquest servidor MySQL no suporta el motor d'emmagatzematge %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Base de dades incorrecte"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Nom de taula incorrecte"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Error reanomenant la taula %1$s a %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "La taula %s ha canviat de nom a %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
@@ -7339,6 +7309,38 @@ msgstr "Definició de PARTICIÓ"
msgid "+ Add a new value"
msgstr "+ Afegir un nou valor"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "El camí de les imatges del tema %s és incorrecte!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "No hi ha vista prèvia disponible."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "agafa"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Tema per defecte %s no trobat!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s no trobat!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "No s'ha trobat el camí de les imatges del tema %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8386,8 +8388,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: phpMyAdmin obté els permisos de l'usuari directament de les taules de "
"permisos de MySQL. El contingut d'aquestes taules pot ser diferent dels "
@@ -9952,8 +9954,8 @@ 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."
msgstr ""
-"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store"
-"%s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o "
+"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store%"
+"s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o "
"igual a ell."
#: setup/lib/index.lib.php:266
@@ -9981,8 +9983,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]."
#: setup/lib/index.lib.php:270
#, php-format
diff --git a/po/cs.po b/po/cs.po
index dcf89118e1..4fd6c2514a 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-06-22 10:46+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: czech \n"
-"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -51,10 +51,10 @@ msgstr "Vyhledávání"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -67,18 +67,18 @@ msgstr "Vyhledávání"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Proveď"
@@ -134,9 +134,9 @@ msgstr "Komentář k databázi: "
msgid "Table comments"
msgstr "Komentář k tabulce"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -145,12 +145,12 @@ msgstr "Komentář k tabulce"
msgid "Column"
msgstr "Pole"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -160,9 +160,9 @@ msgstr "Pole"
msgid "Type"
msgstr "Typ"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -200,12 +200,13 @@ msgstr "Odkazuje na"
msgid "Comments"
msgstr "Komentáře"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -216,17 +217,17 @@ msgstr "Komentáře"
msgid "No"
msgstr "Ne"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -334,8 +335,8 @@ msgstr "Přidat integritní omezení"
msgid "Switch to copied database"
msgstr "Přepnout na zkopírovanou databázi"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -500,8 +501,8 @@ msgstr "SQL dotaz na databázi %s:"
msgid "Submit Query"
msgstr "Provést dotaz"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -610,7 +611,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Přístup odepřen"
@@ -680,7 +681,6 @@ msgid "Search in database"
msgstr "Vyhledávání v databázi"
#: db_search.php:300
-#| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgid "Words or values to search for (wildcard: \"%\"):"
msgstr "Slova nebo hodnoty, které chcete vyhledat (zástupný znak: „%“):"
@@ -693,7 +693,6 @@ msgid "Words are separated by a space character (\" \")."
msgstr "Slova jsou oddělena mezerou („ “)."
#: db_search.php:323
-#| msgid "Inside table(s):"
msgid "Inside tables:"
msgstr "V tabulkách:"
@@ -731,8 +730,8 @@ msgstr "Sledování není zapnuté."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
@@ -751,7 +750,7 @@ msgstr "Replikace"
msgid "Sum"
msgstr "Celkem"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s je výchozí úložiště na tomto MySQL serveru."
@@ -800,8 +799,8 @@ msgstr "Náhled pro tisk"
msgid "Empty"
msgstr "Vyprázdnit"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -874,9 +873,9 @@ msgstr "Aktualizováno"
msgid "Status"
msgstr "Stav"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -970,8 +969,8 @@ msgstr "Výpis byl uložen do souboru %s."
#: import.php:58
#, 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."
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."
@@ -1150,11 +1149,11 @@ msgstr "Odstraňuji vybrané uživatele"
msgid "Close"
msgstr "Ukončit"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Upravit"
@@ -1320,7 +1319,6 @@ msgid "The definition of a stored function must contain a RETURN statement!"
msgstr "Definice uložené funkce musí obsahovat příkaz RETURN!"
#: js/messages.php:123
-#| msgid "Missing value in the form!"
msgid "Value too long in the form!"
msgstr "Hodnota ve formuláři je příliš dlouhá!"
@@ -1686,226 +1684,12 @@ msgstr "Minuty"
msgid "Second"
msgstr "Sekundy"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Velikost písma"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Velikost nahraného souboru přesahuje nastavení upload_max_filesize v php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Velikost nahraného souboru přesahuje hodnotu MAX_FILE_SIZE, která byla "
-"zadána v HTML formuláři."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Soubor byl nahrán jen částečně."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Chybějící adresář pro dočasné soubory."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Chyba při zapisování souboru na disk."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Nahrávání souboru zastaveno rozšířením."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Neznámá chyba při nahrávání souboru."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Chyba při přejmenování nahraného soubory, viz [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Není definován žádný index!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indexy"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unikátní"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Zabaleno"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Mohutnost"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Komentář"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primární klíč byl odstraněn"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Index %s byl odstraněn"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Indexy %1$s a %2$s vypadají stejné a jeden z nich by pravděpodobně mohl být "
-"odstraněn."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Databáze"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Chyba"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Ovlivněn %1$d řádek."
-msgstr[1] "Ovlivněny %1$d řádky."
-msgstr[2] "Ovlivněno %1$d řádek."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Smazán %1$d řádek."
-msgstr[1] "Smazány %1$d řádky."
-msgstr[2] "Smazáno %1$d řádek."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Vložen %1$d řádek."
-msgstr[1] "Vloženy %1$d řádky."
-msgstr[2] "Vloženo %1$d řádek."
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Nepodařilo se uložit nedávnou tabulku"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Nedávné tabulky"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Nebyly nalezeny žádné nedávné tabulky"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Nejsou dostupné podrobnější informace o tomto úložišti."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "Úložiště %s je dostupné na tomto MySQL serveru."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "Úložiště %s je vypnuté na tomto MySQL serveru."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Tento MySQL server nepodporuje úložiště %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Chybná databáze"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Chybné jméno tabulky"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Chyba při přejmenování tabulky %1$s na %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabulka %s byla přejmenována na %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Nepodařilo se uložit nastavení prohlížení tabulky"
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Nebyla nalezena platná cesta k obrázkům pro vzhled %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Náhled není k dispozici."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "zvolit"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Výchozí vzhled %s nebyl nalezen!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Vzhled %s nebyl nalezen!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Nebyla nalezena platná cesta k vzhledu %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr "Vzhled"
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Nepodařilo se připojit: chybné nastavení."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Vítejte v %s"
@@ -1913,8 +1697,8 @@ msgstr "Vítejte v %s"
#: libraries/auth/config.auth.lib.php:106
#, 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."
@@ -1931,49 +1715,49 @@ msgstr ""
"php a ujistěte se, že jsou totožné s těmi, které máte od administrátora "
"MySQL serveru."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Přihlášení"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Dokumentace phpMyAdmina"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "Můžete zadat jméno počítače nebo IP adresu a port oddělené mezerou."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Server:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Jméno:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Heslo:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Server"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Přihlášení vyžaduje povolené cookies."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "Přihlášení bez hesla je zakázáno v konfiguraci (viz AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -1981,8 +1765,8 @@ msgstr ""
"Nebyla zaznamenána žádná aktivita po dobu %s sekund, prosím přihlaste se "
"znovu"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Nepodařilo se přihlášení k MySQL serveru"
@@ -2021,6 +1805,14 @@ msgstr "Chyba PDMS"
msgid "PBMS connection failed:"
msgstr "Připojení k PBMS selhalo:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Chyba"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "Načtení informací o BLOBu z PBMS selhalo:"
@@ -2073,6 +1865,11 @@ msgstr "Tabulky"
msgid "Data"
msgstr "Data"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indexy"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2100,14 +1897,19 @@ msgid "Check Privileges"
msgstr "Zkontrolovat oprávnění"
#: libraries/common.inc.php:587
-#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
+#, fuzzy
+#| msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Nepodařilo se načíst konfigurační soubor"
#: libraries/common.inc.php:588
+#, fuzzy
+#| msgid ""
+#| "This usually means there is a syntax error in it, please check any errors "
+#| "shown bellow."
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
"Obvykle to je způsobenou chybou v tomto souboru, prosím opravte jakékoliv "
"chyby vypsané níže."
@@ -2354,77 +2156,9 @@ msgstr "Nebyl zvolen žádný soubor pro nahrání"
msgid "Execute"
msgstr "Spustit"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Obojí"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Nikde"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Nalevo"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Napravo"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Otevřené"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Uzavřené"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "struktura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "data"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "struktura a data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Rychlý - zobrazí jen minimum možností nastavení"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Vlastní - zobrazí všechna možná nastavení"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Vlastní - jako výše, ale bez volby rychlý/vlastní"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "úplné inserty"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "rozšířené inserty"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "oba výše uvedené"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "ani jeden z výše uvedených"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Velikost písma"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3080,6 +2814,12 @@ msgstr "Nastaví adresáře pro import a export a volby komprese"
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Databáze"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Nastavení zobrazení databází"
@@ -4691,6 +4431,78 @@ msgstr "Prázdné heslo kontrolního uživatele phpMyAdmina při použití pmadb
msgid "Incorrect IP address: %s"
msgstr "Nesprávná IP adresa: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Obojí"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Nikde"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Nalevo"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Napravo"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Otevřené"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Uzavřené"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "struktura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "data"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "struktura a data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Rychlý - zobrazí jen minimum možností nastavení"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Vlastní - zobrazí všechna možná nastavení"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Vlastní - jako výše, ale bez volby rychlý/vlastní"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "úplné inserty"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "rozšířené inserty"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "oba výše uvedené"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "ani jeden z výše uvedených"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4704,19 +4516,16 @@ msgstr "Chybí rozšíření %s. Prosím zkontrolujte nastavení PHP."
#: libraries/db_events.inc.php:30
#, php-format
-#| msgid "Export contents"
msgid "Export of event %s"
msgstr "Exportovat událost %s"
#: libraries/db_events.inc.php:34
#, php-format
-#| msgid "Export contents"
msgid "Export of event \"%s\""
msgstr "Export události „%s“"
#: libraries/db_events.inc.php:40
#, php-format
-#| msgid "No tables found in database"
msgid "No event with name %s found in database %s"
msgstr "V databázi %2$s nebyla nalezen událost se jménem %1$s"
@@ -4726,7 +4535,6 @@ msgid "Events"
msgstr "Události"
#: libraries/db_events.inc.php:58 libraries/db_events.inc.php:60
-#| msgid "There are no files to upload"
msgid "There are no events to display."
msgstr "Nejsou zde žádné události k zobrazení."
@@ -4755,10 +4563,27 @@ msgid "Turn it off"
msgstr "Vypnout"
#: libraries/db_events.inc.php:141
-#| msgid "Add a new server"
msgid "Add a new Event"
msgstr "Přidat novou událost"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+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."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Server neodpovídá"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(nebo není správně nastaven lokální socket MySQL serveru)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Podrobnosti..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4793,18 +4618,15 @@ msgid "Triggers"
msgstr "Spouště"
#: libraries/db_routines.lib.php:659
-#| msgid "Details..."
msgid "Details"
msgstr "Podrobnosti"
#: libraries/db_routines.lib.php:662
-#| msgid "Routines"
msgid "Routine name"
msgstr "Jméno rutiny"
#: libraries/db_routines.lib.php:679
#, php-format
-#| msgid "Change"
msgid "Change to %s"
msgstr "Změnit na %s"
@@ -4813,7 +4635,6 @@ msgid "Parameters"
msgstr "Parametry"
#: libraries/db_routines.lib.php:689
-#| msgid "Direct links"
msgid "Direction"
msgstr "Směr"
@@ -4830,9 +4651,9 @@ msgstr "Délka/Množina"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4840,12 +4661,10 @@ msgid "Options"
msgstr "Nastavení"
#: libraries/db_routines.lib.php:707
-#| msgid "Add prefix"
msgid "Add parameter"
msgstr "Přidat parametr"
#: libraries/db_routines.lib.php:710
-#| msgid "Remove database"
msgid "Remove last parameter"
msgstr "Odstranit poslední parametr"
@@ -4854,17 +4673,14 @@ msgid "Return type"
msgstr "Návratový typ"
#: libraries/db_routines.lib.php:721
-#| msgid "Length/Values"
msgid "Return length/values"
msgstr "Návratová délka/hodnoty"
#: libraries/db_routines.lib.php:726
-#| msgid "Table options"
msgid "Return options"
msgstr "Možnosti návratové hodnoty"
#: libraries/db_routines.lib.php:745
-#| msgid "Description"
msgid "Definition"
msgstr "Definice"
@@ -4877,7 +4693,6 @@ msgid "Definer"
msgstr "Zadavatel"
#: libraries/db_routines.lib.php:758
-#| msgid "Security"
msgid "Security type"
msgstr "Typ zabezpečení"
@@ -4885,8 +4700,12 @@ msgstr "Typ zabezpečení"
msgid "SQL data access"
msgstr "Přístup k SQL datům"
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Komentář"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
-#| msgid "Routines"
msgid "Routine parameters"
msgstr "Parametry rutiny"
@@ -4950,24 +4769,6 @@ msgstr ""
"Počet nemusí být přesný, viz [a@./Documentation.html#faq3_11@Documentation]"
"FAQ 3.11[/a]"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-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."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Server neodpovídá"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(nebo není správně nastaven lokální socket MySQL serveru)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Podrobnosti..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5107,8 +4908,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 "
@@ -5880,8 +5681,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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."
@@ -6184,6 +5985,47 @@ msgstr "Pohledy"
msgid "Export contents"
msgstr "Exportovat obsah"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Velikost nahraného souboru přesahuje nastavení upload_max_filesize v php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Velikost nahraného souboru přesahuje hodnotu MAX_FILE_SIZE, která byla "
+"zadána v HTML formuláři."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Soubor byl nahrán jen částečně."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Chybějící adresář pro dočasné soubory."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Chyba při zapisování souboru na disk."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Nahrávání souboru zastaveno rozšířením."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Neznámá chyba při nahrávání souboru."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Chyba při přejmenování nahraného soubory, viz [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6203,40 +6045,6 @@ msgstr "Výsledek SQL dotazu"
msgid "Generated by"
msgstr "Vygeneroval"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Následující tabulky byly vytvořeny nebo změněny. Teď můžete:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Zobrazit obsah tabulky kliknutím na její jméno"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "Změnit jakákoliv její nastavení kliknutím na odkaz „Nastavení“"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Upravit strukturu kliknutím na odkaz „Struktura“"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Přejít na databázi"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "nastavení"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Přejít na tabulku"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Přejít na podhled"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6303,6 +6111,40 @@ msgstr "Názvy polí"
msgid "This plugin does not support compressed imports!"
msgstr "Tento plugin nepodporuje komprimované soubory!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Následující tabulky byly vytvořeny nebo změněny. Teď můžete:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Zobrazit obsah tabulky kliknutím na její jméno"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "Změnit jakákoliv její nastavení kliknutím na odkaz „Nastavení“"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Upravit strukturu kliknutím na odkaz „Struktura“"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Přejít na databázi"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "nastavení"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Přejít na tabulku"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Přejít na podhled"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6328,6 +6170,42 @@ msgstr ""
"Zadaný XML soubor je buď poškozený nebo nekompletní. Prosím opravte ho a "
"zkuste to znovu."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Není definován žádný index!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unikátní"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Zabaleno"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Mohutnost"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primární klíč byl odstraněn"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Index %s byl odstraněn"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Indexy %1$s a %2$s vypadají stejné a jeden z nich by pravděpodobně mohl být "
+"odstraněn."
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6338,6 +6216,30 @@ msgstr "Žádná"
msgid "Convert to Kana"
msgstr "Převést na Kanu"
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Ovlivněn %1$d řádek."
+msgstr[1] "Ovlivněny %1$d řádky."
+msgstr[2] "Ovlivněno %1$d řádek."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Smazán %1$d řádek."
+msgstr[1] "Smazány %1$d řádky."
+msgstr[2] "Smazáno %1$d řádek."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Vložen %1$d řádek."
+msgstr[1] "Vloženy %1$d řádky."
+msgstr[2] "Vloženo %1$d řádek."
+
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "Z"
@@ -6576,6 +6478,18 @@ msgstr "Znovu nahrát navigační rám"
msgid "This format has no options"
msgstr "Tento formát nemá žádná nastavení"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Nepodařilo se uložit nedávnou tabulku"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Nedávné tabulky"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Nebyly nalezeny žádné nedávné tabulky"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "není v pořádku"
@@ -6960,61 +6874,6 @@ msgstr "Rozdíly"
msgid "Target database"
msgstr "Cílová databáze"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Spustit SQL dotaz(y) na serveru %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Spustit SQL dotaz(y) na databázi %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Vyčistit"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Pole"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Přidat tento SQL dotaz do oblíbených"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Přepsat existující oblíbený dotaz stejného jména"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Nepřepisovat tento dotaz z hlavního okna"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Oddělovač"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Zobrazit zde tento dotaz znovu "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Zobrazit"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "textový soubor"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "soubor z adresáře pro upload"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7077,6 +6936,61 @@ msgstr "Chybný identifikátor"
msgid "Unknown Punctuation String"
msgstr "Neznámé interpunkční znaménko"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Spustit SQL dotaz(y) na serveru %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Spustit SQL dotaz(y) na databázi %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Vyčistit"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Pole"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Přidat tento SQL dotaz do oblíbených"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Přepsat existující oblíbený dotaz stejného jména"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Nepřepisovat tento dotaz z hlavního okna"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Oddělovač"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Zobrazit zde tento dotaz znovu "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Zobrazit"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "textový soubor"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "soubor z adresáře pro upload"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7086,6 +7000,48 @@ msgstr ""
"Kontrolování SQL nemohlo být spušteno. Prosím ověřte, jestli máte požadovaná "
"rozšíření PHP, jak je popsáno v %sdokumentaci%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Nejsou dostupné podrobnější informace o tomto úložišti."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "Úložiště %s je dostupné na tomto MySQL serveru."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "Úložiště %s je vypnuté na tomto MySQL serveru."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Tento MySQL server nepodporuje úložiště %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Chybná databáze"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Chybné jméno tabulky"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Chyba při přejmenování tabulky %1$s na %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabulka %s byla přejmenována na %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Nepodařilo se uložit nastavení prohlížení tabulky"
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabulka se zdá být prázdná!"
@@ -7127,8 +7083,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na "
-"%spopisy transformací%s"
+"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %"
+"spopisy transformací%s"
#: libraries/tbl_properties.inc.php:144
msgid "Transformation options"
@@ -7179,8 +7135,8 @@ msgid ""
"No description is available for this transformation.
Please ask the "
"author what %s does."
msgstr ""
-"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co "
-"%s dělá."
+"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co %"
+"s dělá."
#: libraries/tbl_properties.inc.php:606 tbl_structure.php:678
#, php-format
@@ -7204,6 +7160,38 @@ msgstr "Definice PARTITION"
msgid "+ Add a new value"
msgstr "+ Přidat novou hodnotu"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Nebyla nalezena platná cesta k obrázkům pro vzhled %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Náhled není k dispozici."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "zvolit"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Výchozí vzhled %s nebyl nalezen!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Vzhled %s nebyl nalezen!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Nebyla nalezena platná cesta k vzhledu %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "Vzhled"
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7794,8 +7782,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:302
msgid "Save to browser's storage"
@@ -8238,8 +8226,8 @@ msgstr "Odstranit databáze se stejnými jmény jako 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 "
@@ -9759,8 +9747,8 @@ 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."
msgstr ""
-"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie"
-"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
+"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie%"
+"s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
"hodnotu než je tato."
#: setup/lib/index.lib.php:266
@@ -9771,8 +9759,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."
diff --git a/po/cy.po b/po/cy.po
index 5d43652770..5b6b2a385f 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-05-19 21:21+0200\n"
"Last-Translator: \n"
"Language-Team: Welsh \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=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -51,10 +51,10 @@ msgstr "Chwilio"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -67,18 +67,18 @@ msgstr "Chwilio"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Ewch"
@@ -135,9 +135,9 @@ msgstr "Sylw cronfa ddata:"
msgid "Table comments"
msgstr "Sylwadau tabl"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -146,12 +146,12 @@ msgstr "Sylwadau tabl"
msgid "Column"
msgstr "Colofn"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -161,9 +161,9 @@ msgstr "Colofn"
msgid "Type"
msgstr "Math"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -201,12 +201,13 @@ msgstr "Cysylltu i"
msgid "Comments"
msgstr "Sylwadau"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -217,17 +218,17 @@ msgstr "Sylwadau"
msgid "No"
msgstr "Na"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -335,8 +336,8 @@ msgstr "Ychwanegwch cyfyngiadau"
msgid "Switch to copied database"
msgstr "Newidiwch i'r gronfa ddata a gopïwyd"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -500,8 +501,8 @@ msgstr "Ymholiad SQL ar gronfa ddata %s:"
msgid "Submit Query"
msgstr "Cyflwyno Ymholiad"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -608,7 +609,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Mynediad wedi'i wrthod"
@@ -730,8 +731,8 @@ msgstr "Nid yw tracio'n weithredol"
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
@@ -750,7 +751,7 @@ msgstr "Dyblygiad"
msgid "Sum"
msgstr "Swm"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s yw'r peiriant storio diofyn ar y gweinydd MySQL hwn."
@@ -799,8 +800,8 @@ msgstr "Argraffu golwg"
msgid "Empty"
msgstr "Gwagu"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -875,9 +876,9 @@ msgstr "Diweddarwyd"
msgid "Status"
msgstr "Statws"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -971,8 +972,8 @@ msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s."
#: import.php:58
#, 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."
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."
@@ -1160,11 +1161,11 @@ msgstr ""
msgid "Close"
msgstr "Cau"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Golygu"
@@ -1749,223 +1750,12 @@ msgstr "Munud"
msgid "Second"
msgstr "Eiliad"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Maint ffont"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Ffolder dros dro ar goll."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Methu ag ysgrifennu i'r ddisg."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Cafodd y lanlwythiad ei atal gan estyniad."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Gwall anhysbys wrth lanlwytho ffeil."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Dim indecs wedi'i ddiffinio!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indecsau"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unigryw"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Paciwyd"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr ""
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Sylw"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Cafodd yr allwedd gynradd ei gollwng"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Cafodd indecs %s ei ollwng"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Mae'n edrych fel bod yr indecsau %1$s a %2$s yn hafal. Gallwch chi dynnu un "
-"ohonyn nhw."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Cronfeydd Data"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Gwall"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d rhes wedi'i heffeithio."
-msgstr[1] "%1$d rhes wedi'u heffeithio."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d rhes wedi'i dileu."
-msgstr[1] "%1$d rhes wedi'u dileu."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d rhes wedi'i hychwanegu."
-msgstr[1] "%1$d rhes wedi'u hychwanegu."
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Cyfrifwch y tablau"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Does dim gwybodaeth statws fanwl ar gael ar gyfer y peiriant storio hwn."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "Mae %s ar gael ar y gweinydd MySQL hwn."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "Cafodd %s ei analluogi ar y gweinydd MySQL hwn."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Dyw'r gweinydd MySQL hwn ddim yn cynnal y peiriant storio %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Crofna ddata annilys"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Enw tabl annilys"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Gwall wrth ailenwi tabl %1$s i %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Cafodd y tabl %s ei ailenwi i %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Dim llwybr delwedd dilys ar gael ar gyfer thema %s."
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Dim rhagolwg ar gael"
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "cymerwch e"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Thema diofyn %s heb ei darganfod!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Heb ddarganfod thema ddiofyn %s!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Heb ddarganfod llwybr thema ar gyfer thema %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Methu â chysylltu: gosodiadau annilys"
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Croeso i %s"
@@ -1973,11 +1763,11 @@ msgstr "Croeso i %s"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
msgid ""
@@ -1991,45 +1781,45 @@ msgstr ""
"ffurfwedd a scirhau eu bod nhw'n cyfateb i'r wybodaeth a roddwyd gan "
"weinyddwr y gweinydd MySQL."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Mewngofnodwch"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Dogfennaeth phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
"Gallwch gyflwyno enw'r gwesteiwr / cyfeiriad IP a'r porth gan eu gwahanu gan "
"fwlch."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Gweinydd:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Enw defnyddiwr:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Cyfrinair:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Dewis Gweinydd"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Mae'n rhaid bod cwcis wedi'u galluogi heibio'r pwynt hwn."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -2037,14 +1827,14 @@ msgstr ""
"Nid oes hawl mewngofnodi heb gyfrinair. Dyma'r gosodiad yn eich ffurfwedd "
"(gweler AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Dim gweithredoedd o fewn %s eiliad; mewngofnodwch eto."
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Methu â mewngofnodi i'r gweinydd MySQL"
@@ -2087,6 +1877,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Coladiad cysylltiad MySQL"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Gwall"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2139,6 +1937,11 @@ msgstr "Tablau"
msgid "Data"
msgstr "Data"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indecsau"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2168,13 +1971,15 @@ msgid "Check Privileges"
msgstr "Gwirio Breintiau"
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
-msgstr ""
+#, fuzzy
+#| msgid "Failed to write file to disk."
+msgid "Failed to read configuration file"
+msgstr "Methu ag ysgrifennu i'r ddisg."
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2423,83 +2228,9 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Close"
-msgid "Closed"
-msgstr "Cau"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr ""
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Strwythur a data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr ""
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Autoextend increment"
-msgid "extended inserts"
-msgstr "Cynyddiad awtoestyn"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Maint ffont"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3162,6 +2893,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Cronfeydd Data"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4688,6 +4425,84 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Close"
+msgid "Closed"
+msgstr "Cau"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr ""
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Strwythur a data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr ""
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Autoextend increment"
+msgid "extended inserts"
+msgstr "Cynyddiad awtoestyn"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4758,6 +4573,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "Ychwanegwch weinydd newydd"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Dyw'r gweinydd ddim yn ymateb"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Manylion..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4832,9 +4664,9 @@ msgstr ""
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4889,6 +4721,11 @@ msgstr "Dychwelyd math"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Sylw"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4951,23 +4788,6 @@ msgid ""
"3.11[/a]"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Dyw'r gweinydd ddim yn ymateb"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Manylion..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5129,8 +4949,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:275
@@ -5868,8 +5688,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6178,6 +5998,42 @@ msgstr "Dangos"
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Ffolder dros dro ar goll."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Methu ag ysgrifennu i'r ddisg."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Cafodd y lanlwythiad ei atal gan estyniad."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Gwall anhysbys wrth lanlwytho ffeil."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6195,40 +6051,6 @@ msgstr ""
msgid "Generated by"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6290,6 +6112,40 @@ msgstr ""
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6314,6 +6170,42 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Dim indecs wedi'i ddiffinio!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unigryw"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Paciwyd"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr ""
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Cafodd yr allwedd gynradd ei gollwng"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Cafodd indecs %s ei ollwng"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Mae'n edrych fel bod yr indecsau %1$s a %2$s yn hafal. Gallwch chi dynnu un "
+"ohonyn nhw."
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6324,6 +6216,27 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d rhes wedi'i heffeithio."
+msgstr[1] "%1$d rhes wedi'u heffeithio."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d rhes wedi'i dileu."
+msgstr[1] "%1$d rhes wedi'u dileu."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d rhes wedi'i hychwanegu."
+msgstr[1] "%1$d rhes wedi'u hychwanegu."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6564,6 +6477,22 @@ msgstr ""
msgid "This format has no options"
msgstr ""
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Cyfrifwch y tablau"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr ""
@@ -6945,6 +6874,57 @@ msgstr "Gwahaniaeth"
msgid "Target database"
msgstr "Cronfa ddata targed"
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr "BEGIN CUT"
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr "END CUT"
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr "BEGIN RAW"
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr "END RAW"
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sql_query_form.lib.php:223
#, php-format
msgid "Run SQL query/queries on server %s"
@@ -7000,57 +6980,6 @@ msgstr "Lleoliad y ffeil destun"
msgid "web server upload directory"
msgstr "cyfeiriadur lanlwytho y gweinydd gwe"
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr "BEGIN CUT"
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr "END CUT"
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr "BEGIN RAW"
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr "END RAW"
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7058,6 +6987,49 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Does dim gwybodaeth statws fanwl ar gael ar gyfer y peiriant storio hwn."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "Mae %s ar gael ar y gweinydd MySQL hwn."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "Cafodd %s ei analluogi ar y gweinydd MySQL hwn."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Dyw'r gweinydd MySQL hwn ddim yn cynnal y peiriant storio %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Crofna ddata annilys"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Enw tabl annilys"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Gwall wrth ailenwi tabl %1$s i %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Cafodd y tabl %s ei ailenwi i %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7164,6 +7136,38 @@ msgstr "Diffiniad PARTITION"
msgid "+ Add a new value"
msgstr "Ychwanegwch weinydd newydd"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Dim llwybr delwedd dilys ar gael ar gyfer thema %s."
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Dim rhagolwg ar gael"
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "cymerwch e"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Thema diofyn %s heb ei darganfod!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Heb ddarganfod thema ddiofyn %s!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Heb ddarganfod llwybr thema ar gyfer thema %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8155,8 +8159,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 ""
#: server_privileges.php:1764
diff --git a/po/da.po b/po/da.po
index 80a986b073..de2531040d 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-03-07 01:17+0200\n"
"Last-Translator: \n"
"Language-Team: danish \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: Pootle 2.0.5\n"
@@ -48,10 +48,10 @@ msgstr "Søg"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Søg"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Udfør"
@@ -131,9 +131,9 @@ msgstr "Databasekommentar: "
msgid "Table comments"
msgstr "Tabel kommentarer"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "Tabel kommentarer"
msgid "Column"
msgstr "Kolonnenavn"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "Kolonnenavn"
msgid "Type"
msgstr "Datatype"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,12 +197,13 @@ msgstr "Linker til"
msgid "Comments"
msgstr "Kommentarer"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -213,17 +214,17 @@ msgstr "Kommentarer"
msgid "No"
msgstr "Nej"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -331,8 +332,8 @@ msgstr "Tilføj begrænsninger"
msgid "Switch to copied database"
msgstr "Skift til den kopierede database"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -495,8 +496,8 @@ msgstr "SQL-forespørgsel til database %s:"
msgid "Submit Query"
msgstr "Send forespørgsel"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -604,7 +605,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Adgang Nægtet"
@@ -725,8 +726,8 @@ msgstr "Sporing er ikke aktiv."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -744,7 +745,7 @@ msgstr "Replikering"
msgid "Sum"
msgstr "Sum"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s er standard datalageret på denne MySQL-server."
@@ -793,8 +794,8 @@ msgstr "Vis (udskriftvenlig)"
msgid "Empty"
msgstr "Tøm"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -867,9 +868,9 @@ msgstr "Opdateret"
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -963,11 +964,11 @@ msgstr "Dump er blevet gemt i filen %s."
#: import.php:58
#, 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."
msgstr ""
-"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst "
-"%sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
+"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst %"
+"sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
"begrænsning."
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1151,11 +1152,11 @@ msgstr "Fjerner valge brugere"
msgid "Close"
msgstr "Luk"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ret"
@@ -1715,222 +1716,12 @@ msgstr "Minut"
msgid "Second"
msgstr "Sekund"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Skriftstørrelse"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Den uploadede fil overstiger MAX_FILE_SIZE direktivet som angivet i HTML-"
-"formularen."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Den uploadede fil blev kun delvist uploaded."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Mangler en midlertidig mappe."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Kunne ikke skrive fil til disk."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Filupload stoppet af udvidelse."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Ukendt fejl i filupload."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Fejl ved flytning af den uploadede fil, se FAQ 1.11"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Intet indeks defineret!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeks"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unik"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Pakket"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinalitet"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Kommentar"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primærnøglen er slettet"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeks %s er blevet slettet"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Indeks %1$s ser ud til at være identisk med indeks %2$s, så et af dem kan "
-"sikkert fjernes"
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Databaser"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Fejl"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d række påvirket"
-msgstr[1] "%1$d rækker påvirket"
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d række slettet"
-msgstr[1] "%1$d rækker slettet"
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d række sat ind"
-msgstr[1] "%1$d rækker sat ind"
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Kunne ikke gemme seneste tabel"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Seneste tabeller"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Der er ingen nye tabeller"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Der er ingen detaljerede statusinformationer tilgængelige for dette "
-"datalager."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s er tilgængelig på denne MySQL-server."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s er slået fra på denne MySQL-server."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Denne MySQL-server understøtter ikke %s datalager."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Ugyldig database"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Ugyldigt tabelnavn"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Fejl ved omdøbning af tabel %1$s til %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabellen %s er nu omdøbt til %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Kunne ikke gemme brugerindstillinger for tabel"
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Ingen gyldig billedsti for tema %s fundet!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Intet billede til rådighed."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "Vælg dette"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Standardtema %s ikke fundet!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s ikke fundet!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Sti til tema ikke fundet for tema %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Kan ikke forbinde: ugyldige indstillinger."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Velkommen til %s"
@@ -1938,8 +1729,8 @@ msgstr "Velkommen til %s"
#: libraries/auth/config.auth.lib.php:106
#, 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."
@@ -1956,45 +1747,45 @@ msgstr ""
"sikre dig at de svarer til den information du har fået af administratoren af "
"MySQL-serveren."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Login"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin dokumentation"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
"Du kan angive værtsnavn/IP adresse og port ved at adskille dem med et "
"mellemrum"
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Server"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Brugernavn:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Kodeord:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Server valg"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Herefter skal cookies være slået til."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -2002,15 +1793,15 @@ msgstr ""
"Det er ifølge konfigurationen ikke tilladt at logge ind uden en adgangskkode "
"(se AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
"Ingen aktivitet i de seneste %s sekunder eller mere, log venligst ind igen"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Kan ikke logge ind på MySQL-serveren"
@@ -2049,6 +1840,14 @@ msgstr "PBMS-fejl"
msgid "PBMS connection failed:"
msgstr "Det lykkedes ikke at oprette forbindelse til PBMS"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Fejl"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS hent BLOB info mislykkedes"
@@ -2101,6 +1900,11 @@ msgstr "Tabeller"
msgid "Data"
msgstr "Data"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeks"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2130,13 +1934,13 @@ msgstr "Check Privilegier"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Kunne ikke indlæse standardkonfiguration fra: \"%1$s\""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2382,81 +2186,9 @@ msgstr "Der er ikke nogen filer at uploade"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Begge"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Ingen steder"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Venstre"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Højre"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Åben"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Lukket"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "struktur"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Struktur og data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Hurtig - vis kun de mest nødvendige konfigurationsmuligheder"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Brugerdefineret - vis alle valgmuligheder for konfigurering"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-"Brugerdefineret - som ovenfor, men uden valgmuligheder for hurtig/"
-"brugerdefineret"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "Komplette indsættelser"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "Udvidede indsættelser"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "Begge de ovenfor anførte"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "Ingen af de ovenfor anførte"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Skriftstørrelse"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3122,6 +2854,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Databaser"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Indstillinger for visning af databaser"
@@ -4645,6 +4383,82 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Begge"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Ingen steder"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Venstre"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Højre"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Åben"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Lukket"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "struktur"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Struktur og data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Hurtig - vis kun de mest nødvendige konfigurationsmuligheder"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Brugerdefineret - vis alle valgmuligheder for konfigurering"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+"Brugerdefineret - som ovenfor, men uden valgmuligheder for hurtig/"
+"brugerdefineret"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "Komplette indsættelser"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "Udvidede indsættelser"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "Begge de ovenfor anførte"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "Ingen af de ovenfor anførte"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4715,6 +4529,24 @@ msgstr ""
msgid "Add a new Event"
msgstr "Tilføj en ny bruger"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Forbindelse for kontrolbruger som defineret i din konfiguration slog fejl."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Serveren svarer ikke"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(eller den lokale MySQL servers socket er ikke korrekt konfigureret)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4787,9 +4619,9 @@ msgstr "Længde/Værdi*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4846,6 +4678,11 @@ msgstr "Sikkerhed"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Kommentar"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4910,24 +4747,6 @@ msgid ""
"3.11[/a]"
msgstr "Kan være anslået. Se FAQ 3.11"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Forbindelse for kontrolbruger som defineret i din konfiguration slog fejl."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Serveren svarer ikke"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(eller den lokale MySQL servers socket er ikke korrekt konfigureret)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5095,8 +4914,8 @@ msgstr ""
#| "happen: %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 ""
"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 "
@@ -5862,8 +5681,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6177,6 +5996,44 @@ msgstr "Visning"
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Den uploadede fil overstiger MAX_FILE_SIZE direktivet som angivet i HTML-"
+"formularen."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Den uploadede fil blev kun delvist uploaded."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Mangler en midlertidig mappe."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Kunne ikke skrive fil til disk."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Filupload stoppet af udvidelse."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Ukendt fejl i filupload."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Fejl ved flytning af den uploadede fil, se FAQ 1.11"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6194,40 +6051,6 @@ msgstr "SQL-resultat"
msgid "Generated by"
msgstr "Genereret af"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6290,6 +6113,40 @@ msgstr "Kolonnenavne"
msgid "This plugin does not support compressed imports!"
msgstr "Denne plugin understøtter ikke komprimeret import!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6314,6 +6171,42 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Intet indeks defineret!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unik"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Pakket"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinalitet"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primærnøglen er slettet"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeks %s er blevet slettet"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Indeks %1$s ser ud til at være identisk med indeks %2$s, så et af dem kan "
+"sikkert fjernes"
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6326,6 +6219,27 @@ msgstr "Ingen"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d række påvirket"
+msgstr[1] "%1$d rækker påvirket"
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d række slettet"
+msgstr[1] "%1$d rækker slettet"
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d række sat ind"
+msgstr[1] "%1$d rækker sat ind"
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6568,6 +6482,18 @@ msgstr ""
msgid "This format has no options"
msgstr "Dette format har ingen indstillinger"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Kunne ikke gemme seneste tabel"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Seneste tabeller"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Der er ingen nye tabeller"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "ikke OK"
@@ -6957,63 +6883,6 @@ msgstr ""
msgid "Target database"
msgstr ""
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Kør SQL-forespørgsel/forespørgsler på server %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Kør SQL-forspørgsel(er) på database %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Kolonnenavne"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Lav bogmærke til denne SQL-forespørgsel"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Lad alle brugere bruge dette bogmærke"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Erstat eksisterende bogmærke af samme navn"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Overskriv ikke denne forespørgsel fra udenfor vinduet"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Adskiller"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Vis forespørgslen her igen "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Kun oversigt"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Tekstfilens placering"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "webserver upload-mappe"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7078,6 +6947,63 @@ msgstr "Ugyldig identifikator"
msgid "Unknown Punctuation String"
msgstr "Ukendt tegnsætnings-streng"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Kør SQL-forespørgsel/forespørgsler på server %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Kør SQL-forspørgsel(er) på database %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Kolonnenavne"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Lav bogmærke til denne SQL-forespørgsel"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Lad alle brugere bruge dette bogmærke"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Erstat eksisterende bogmærke af samme navn"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Overskriv ikke denne forespørgsel fra udenfor vinduet"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Adskiller"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Vis forespørgslen her igen "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Kun oversigt"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Tekstfilens placering"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "webserver upload-mappe"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7087,6 +7013,50 @@ msgstr ""
"SQL-validatoren kunne ikke initialiseres. Check venligst at du har de "
"nødvendige PHP-udvidelser installeret som beskrevet i %sdokumentationen%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Der er ingen detaljerede statusinformationer tilgængelige for dette "
+"datalager."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s er tilgængelig på denne MySQL-server."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s er slået fra på denne MySQL-server."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Denne MySQL-server understøtter ikke %s datalager."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Ugyldig database"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Ugyldigt tabelnavn"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Fejl ved omdøbning af tabel %1$s til %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabellen %s er nu omdøbt til %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Kunne ikke gemme brugerindstillinger for tabel"
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabel ser ud til at være tom"
@@ -7218,6 +7188,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Tilføj en ny bruger"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Ingen gyldig billedsti for tema %s fundet!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Intet billede til rådighed."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "Vælg dette"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Standardtema %s ikke fundet!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s ikke fundet!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Sti til tema ikke fundet for tema %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8337,14 +8339,14 @@ msgstr "Drop databaser der har samme navne som brugernes."
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."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
diff --git a/po/de.po b/po/de.po
index 0939e1d6cf..cbb8234136 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-04-23 04:28+0200\n"
"Last-Translator: Dominik Geyer \n"
"Language-Team: german \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: Pootle 2.0.5\n"
@@ -48,10 +48,10 @@ msgstr "Suche"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Suche"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "OK"
@@ -132,9 +132,9 @@ msgstr "Datenbankkommentar: "
msgid "Table comments"
msgstr "Tabellen-Kommentar"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Tabellen-Kommentar"
msgid "Column"
msgstr "Spalte"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Spalte"
msgid "Type"
msgstr "Typ"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "Verweise"
msgid "Comments"
msgstr "Kommentare"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "Kommentare"
msgid "No"
msgstr "Nein"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -332,8 +333,8 @@ msgstr "Constraints hinzufügen"
msgid "Switch to copied database"
msgstr "Zu kopierter Datenbank wechseln"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -348,8 +349,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier"
-"%s um herauszufinden warum."
+"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier%"
+"s um herauszufinden warum."
#: db_operations.php:600
msgid "Edit or export relational schema"
@@ -497,8 +498,8 @@ msgstr "SQL-Befehl in der Datenbank %s:"
msgid "Submit Query"
msgstr "SQL-Befehl ausführen"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -606,7 +607,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Zugriff verweigert."
@@ -727,11 +728,11 @@ msgstr "Tracking ist nicht aktiviert."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die "
-"%sDokumentation%s."
+"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die %"
+"sDokumentation%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -748,7 +749,7 @@ msgstr "Replikation"
msgid "Sum"
msgstr "Gesamt"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "Neue Tabellen werden standardmäßig im Format %s angelegt."
@@ -797,8 +798,8 @@ msgstr "Druckansicht"
msgid "Empty"
msgstr "Leeren"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -877,9 +878,9 @@ msgstr "Aktualisiert"
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -973,11 +974,11 @@ msgstr "Dump (Schema) wurde in Datei %s gespeichert."
#: import.php:58
#, 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."
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:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1165,11 +1166,11 @@ msgstr "Die ausgewählten Benutzer werden gelöscht"
msgid "Close"
msgstr "Schliesse"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Bearbeiten"
@@ -1723,223 +1724,6 @@ msgstr "Minute"
msgid "Second"
msgstr "Sekunde"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Schriftgröße"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Die hochgeladene Datei ist größer als der in der php.ini in "
-"upload_max_filesize angegebene Wert."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Die hochgeladene Datei ist größer als der in MAX_FILE_SIZE des HTML "
-"Formulars angegebene Wert."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Die Datei wurde teilweise übertragen."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Kein gültiges Temporäres Verzeichnis für hochgeladene Dateien."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Datei konnte gespeichert werden."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Dateihochladen durch eine Erweiterung gestoppt."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Unbekannter Fehler beim Dateihochladen."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Fehler beim Verschieben der hochgeladenen Datei, siehe FAQ 1.11"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Kein Index definiert!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indizes"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unique"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Gepackt"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinalität"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Kommentar"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Der Primärschlüssel wurde gelöscht."
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Index %s wurde entfernt."
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Die Indizes %1$s und %2$s scheinen gleich zu sein und einer könnte "
-"möglicherweise entfernt werden."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Datenbanken"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Fehler"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d Zeile betroffen."
-msgstr[1] "%1$d Zeilen betroffen."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d Zeile gelöscht."
-msgstr[1] "%1$d Zeilen gelöscht."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d Zeile eingefügt."
-msgstr[1] "%1$d Zeilen eingefügt."
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not save configuration"
-msgid "Could not save recent table"
-msgstr "Fehler beim Speichern der Konfiguration"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Zähle Tabellen"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Es sind keine Server konfiguriert"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Für dieses Tabellenformat sind keine Statusinformationen verfügbar"
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s ist auf diesem MySQL-Server verfügbar."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s wurde auf diesem MySQL-Server deaktiviert."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Dieser MySQL-Server unterstützt %s nicht."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "ungültige Datenbank"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "ungültiger Tabellenname"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Fehler beim umbenennen von Tabelle %1$s nach %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabelle %s wurde umbenannt in %s."
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-"Keinen gültiges Pfad für Grafiken des Oberflächendesigns \"%s\" gefunden!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Keine Vorschau verfügbar."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "auswählen"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Standard-Oberflächendesign \"%s\" nicht gefunden!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Oberflächendesign \"%s\" nicht gefunden!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Pfad für das Oberflächendesign \"%s\" nicht gefunden!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
@@ -1947,7 +1731,7 @@ msgstr ""
"hergestellt werden."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Willkommen bei %s"
@@ -1955,8 +1739,8 @@ msgstr "Willkommen bei %s"
#: libraries/auth/config.auth.lib.php:106
#, 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 ""
"Eine mögliche Ursache wäre, dass Sie noch keine Konfigurationsdatei angelegt "
"haben. Verwenden Sie in diesem Fall doch das %1$sSetup-Skript%2$s, um eine "
@@ -1975,52 +1759,52 @@ msgstr ""
"vergewissern, dass diese den Informationen, welche Sie vom Administrator "
"erhalten haben, entsprechen."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Anmeldung"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin-Dokumentation"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
"Sie können einen Rechnernamen oder eine IP Adresse und einen Port durch "
"Leerzeichen getrennt eingeben."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Server"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Benutzername:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Passwort:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Server Auswählen"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Ab diesem Punkt müssen Cookies aktiviert sein."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"Login ohne Passwort ist verboten (siehe AllowNoPassword in der Konfiguration)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -2028,8 +1812,8 @@ msgstr ""
"Da Sie seit mindestens %s Sekunden inaktiv waren, wurden Sie automatisch "
"abgemeldet. Bitte melden Sie sich erneut an."
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Die Anmeldung am MySQL-Server ist fehlgeschlagen."
@@ -2070,6 +1854,14 @@ msgstr "PBMS Fehler"
msgid "PBMS connection failed:"
msgstr "PBMS Verbindung fehlgeschlagen:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Fehler"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS: Infos über BLOB nicht erhalten: "
@@ -2122,6 +1914,11 @@ msgstr "Tabellen"
msgid "Data"
msgstr "Daten"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indizes"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2151,13 +1948,13 @@ msgstr "Rechte überprüfen"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Fehler beim Speichern der Konfiguration"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2406,79 +2203,9 @@ msgstr "Es sind keine Dateien zum Upload vorhanden"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Beide"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-#, fuzzy
-#| msgid "Height"
-msgid "Right"
-msgstr "Höhe"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Geöffnet"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Geschlossen"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "Struktur"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "Daten"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "Struktur und Daten"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Schnell – Zeige nur die minimalen Konfigurationsoptionen"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Angepasst – Zeige alle möglichen Konfigurationsoptionen"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Angepasst – Wie oben, aber ohne die Schnell-/Angepasst-Auswahl"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "Vollständige 'INSERT's"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "Erweiterte 'INSERT's"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "Beide der Obigen"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "Keines der Obigen"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Schriftgröße"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3134,6 +2861,12 @@ msgstr "Import/Export-Verzeichnis und Kompressionsoptionen setzen"
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Datenbanken"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Anzeigeoptionen für Datenbank"
@@ -4783,6 +4516,80 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Ungültige IP-Adresse: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Beide"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+#, fuzzy
+#| msgid "Height"
+msgid "Right"
+msgstr "Höhe"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Geöffnet"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Geschlossen"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "Struktur"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "Daten"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "Struktur und Daten"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Schnell – Zeige nur die minimalen Konfigurationsoptionen"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Angepasst – Zeige alle möglichen Konfigurationsoptionen"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Angepasst – Wie oben, aber ohne die Schnell-/Angepasst-Auswahl"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "Vollständige 'INSERT's"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "Erweiterte 'INSERT's"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "Beide der Obigen"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "Keines der Obigen"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4853,6 +4660,27 @@ msgstr ""
msgid "Add a new Event"
msgstr "Neuen Server hinzufügen"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Verbindung für den controluser, wie er in Ihrer Konfiguration angegeben ist, "
+"ist fehlgeschlagen."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Der Server antwortet nicht."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+"(evtl. ist auch der Socket des lokalen MySQL-Servers socket nicht korrekt "
+"konfiguriert)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Details ..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4927,9 +4755,9 @@ msgstr "Länge/Set"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4988,6 +4816,11 @@ msgstr "Sicherheit"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Kommentar"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5053,27 +4886,6 @@ msgid ""
msgstr ""
"Es kann sich hierbei um Näherungswerte handeln. Bitte lesen Sie auch FAQ 3.11"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Verbindung für den controluser, wie er in Ihrer Konfiguration angegeben ist, "
-"ist fehlgeschlagen."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Der Server antwortet nicht."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-"(evtl. ist auch der Socket des lokalen MySQL-Servers socket nicht korrekt "
-"konfiguriert)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Details ..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5215,8 +5027,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 "
@@ -5999,8 +5811,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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."
@@ -6309,6 +6121,46 @@ msgstr "Ansichten"
msgid "Export contents"
msgstr "Export-Inhalte"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Die hochgeladene Datei ist größer als der in der php.ini in "
+"upload_max_filesize angegebene Wert."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Die hochgeladene Datei ist größer als der in MAX_FILE_SIZE des HTML "
+"Formulars angegebene Wert."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Die Datei wurde teilweise übertragen."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Kein gültiges Temporäres Verzeichnis für hochgeladene Dateien."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Datei konnte gespeichert werden."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Dateihochladen durch eine Erweiterung gestoppt."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Unbekannter Fehler beim Dateihochladen."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Fehler beim Verschieben der hochgeladenen Datei, siehe FAQ 1.11"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6328,43 +6180,6 @@ msgstr "SQL-Abfrageergebnis"
msgid "Generated by"
msgstr "Erstellt von"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-"Die folgenden Strukturen wurden entweder erstellt oder verändert. Hier "
-"können Sie:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Zum Anzeigen einer Struktur einfach auf den Namen klicken"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Zum Ändern der Einstellungen auf das entsprechende \"Optionen\" klicken"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Zum Ändern der Struktur auf das entsprechenden \"Struktur\" klicken"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Gehe zur Datenbank"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "Einstellungen"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Gehe zur Tabelle"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Gehe zum View"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6433,6 +6248,43 @@ msgstr "Spaltennamen"
msgid "This plugin does not support compressed imports!"
msgstr "Dieses Plugin unterstützt keine Kompression!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+"Die folgenden Strukturen wurden entweder erstellt oder verändert. Hier "
+"können Sie:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Zum Anzeigen einer Struktur einfach auf den Namen klicken"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Zum Ändern der Einstellungen auf das entsprechende \"Optionen\" klicken"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Zum Ändern der Struktur auf das entsprechenden \"Struktur\" klicken"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Gehe zur Datenbank"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "Einstellungen"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Gehe zur Tabelle"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Gehe zum View"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6459,6 +6311,42 @@ msgstr ""
"Die angegebene XML-Datei war entweder fehlerhaft oder unvollständig. Bitte "
"korrigieren und erneut versuchen."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Kein Index definiert!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unique"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Gepackt"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinalität"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Der Primärschlüssel wurde gelöscht."
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Index %s wurde entfernt."
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Die Indizes %1$s und %2$s scheinen gleich zu sein und einer könnte "
+"möglicherweise entfernt werden."
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6469,6 +6357,27 @@ msgstr "keine"
msgid "Convert to Kana"
msgstr "Nach Kana konvertieren"
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d Zeile betroffen."
+msgstr[1] "%1$d Zeilen betroffen."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d Zeile gelöscht."
+msgstr[1] "%1$d Zeilen gelöscht."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d Zeile eingefügt."
+msgstr[1] "%1$d Zeilen eingefügt."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6711,6 +6620,24 @@ msgstr "Navigations-Frame aktualisieren"
msgid "This format has no options"
msgstr "Für dieses Format sind keine Optionen vorhanden"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Could not save recent table"
+msgstr "Fehler beim Speichern der Konfiguration"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Zähle Tabellen"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Es sind keine Server konfiguriert"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "fehlerhaft"
@@ -7100,61 +7027,6 @@ msgstr "Unterschied"
msgid "Target database"
msgstr "Ziel-Datenbank"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "SQL-Befehl(e) auf Server %s ausführen"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "SQL-Befehl(e) in Datenbank %s ausführen"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Werte löschen"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Spalten"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "SQL-Abfrage speichern"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Überschreibe gleichnamiges Bookmark"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Abfrage vor Änderungen außerhalb des Fensters schützen"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Begrenzer"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Diese Abfrage hier wieder anzeigen"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Nur zeigen"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Datei"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "Upload-Verzeichnis auf dem Webserver"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7220,6 +7092,61 @@ msgstr "Ungültiger Bezeichner"
msgid "Unknown Punctuation String"
msgstr "Unbekannte Interpunktion"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "SQL-Befehl(e) auf Server %s ausführen"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "SQL-Befehl(e) in Datenbank %s ausführen"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Werte löschen"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Spalten"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "SQL-Abfrage speichern"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Überschreibe gleichnamiges Bookmark"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Abfrage vor Änderungen außerhalb des Fensters schützen"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Begrenzer"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Diese Abfrage hier wieder anzeigen"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Nur zeigen"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Datei"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "Upload-Verzeichnis auf dem Webserver"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7230,6 +7157,48 @@ msgstr ""
"überprüfen Sie, ob Sie die in der %sDokumentation%s beschriebenen php-"
"Erweiterungen installiert haben."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Für dieses Tabellenformat sind keine Statusinformationen verfügbar"
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s ist auf diesem MySQL-Server verfügbar."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s wurde auf diesem MySQL-Server deaktiviert."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Dieser MySQL-Server unterstützt %s nicht."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "ungültige Datenbank"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "ungültiger Tabellenname"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Fehler beim umbenennen von Tabelle %1$s nach %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabelle %s wurde umbenannt in %s."
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Die Tabelle scheint leer zu sein!"
@@ -7324,8 +7293,8 @@ msgid ""
"author what %s does."
msgstr ""
"Für diese Umwandlung ist keine Beschreibung verfügbar.
Für weitere "
-"Informationen wenden Sie sich bitte an den Autoren der Funktion ""
-"%s"."
+"Informationen wenden Sie sich bitte an den Autoren der Funktion "%"
+"s"."
#: libraries/tbl_properties.inc.php:606 tbl_structure.php:678
#, php-format
@@ -7349,6 +7318,39 @@ msgstr "PARTITION Definition"
msgid "+ Add a new value"
msgstr "+ Neuen Wert hinzufügen"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+"Keinen gültiges Pfad für Grafiken des Oberflächendesigns \"%s\" gefunden!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Keine Vorschau verfügbar."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "auswählen"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Standard-Oberflächendesign \"%s\" nicht gefunden!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Oberflächendesign \"%s\" nicht gefunden!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Pfad für das Oberflächendesign \"%s\" nicht gefunden!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8412,8 +8414,8 @@ msgstr "Die gleichnamigen Datenbanken löschen."
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 liest die Benutzerprofile direkt aus den entsprechenden MySQL-"
"Tabellen aus. Der Inhalt dieser Tabellen kann sich von den Benutzerprofilen, "
@@ -10027,8 +10029,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]."
#: setup/lib/index.lib.php:270
#, php-format
diff --git a/po/el.po b/po/el.po
index 8bcdf07b37..d4cebfe663 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
-"PO-Revision-Date: 2011-06-20 11:01+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
+"PO-Revision-Date: 2011-06-22 23:27+0200\n"
"Last-Translator: Panagiotis Papazoglou \n"
"Language-Team: greek \n"
-"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -48,10 +48,10 @@ msgstr "Αναζήτηση"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Αναζήτηση"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Εκτέλεση"
@@ -132,9 +132,9 @@ msgstr "Σχόλιο βάσης: "
msgid "Table comments"
msgstr "Σχόλια Πίνακα"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Σχόλια Πίνακα"
msgid "Column"
msgstr "Στήλη"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Στήλη"
msgid "Type"
msgstr "Τύπος"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "Σύνδεση με"
msgid "Comments"
msgstr "Σχόλια"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "Σχόλια"
msgid "No"
msgstr "Όχι"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -332,8 +333,8 @@ msgstr "Προσθήκη περιορισμών"
msgid "Switch to copied database"
msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομένων"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -497,8 +498,8 @@ msgstr "Εντολή SQL στη βάση δεδομένων %s:"
msgid "Submit Query"
msgstr "Υποβολή ερωτήματος"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -512,10 +513,9 @@ msgstr[0] ""
msgstr[1] ""
#: db_routines.php:165
-#, fuzzy, php-format
-#| msgid "Allows executing stored routines."
+#, php-format
msgid "Execution results of routine %s"
-msgstr "Επιτρέπει την εκτέλεση αποθηκευμένων εργασιών."
+msgstr "Αποτελέσματα εκτέλεσης της ρουτίνας %s"
#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
@@ -535,32 +535,27 @@ msgid "MySQL said: "
msgstr "Η MySQL επέστρεψε το μήνυμα: "
#: db_routines.php:208 db_routines.php:263 db_routines.php:402
-#, fuzzy
-#| msgid "Error in Processing Request"
msgid "Error in processing request"
-msgstr "Σφάλμα στην Προώθηση του Αιτημάτος"
+msgstr "Σφάλμα στην προώθηση αιτημάτος"
#: db_routines.php:209 db_routines.php:264 db_routines.php:403
-#, fuzzy, php-format
-#| msgid "No tables found in database"
+#, php-format
msgid "No routine with name %s found in database %s"
-msgstr "Δεν βρέθηκαν Πίνακες στη βάση δεδομένων."
+msgstr "Καμιά ρουτίνα με την ονομασία %s δεν βρέθηκε στη βάση δεδομένων %s"
#: db_routines.php:230 db_routines.php:234
msgid "Execute routine"
msgstr ""
#: db_routines.php:254 db_routines.php:258
-#, fuzzy, php-format
-#| msgid "Export defaults"
+#, php-format
msgid "Export of routine %s"
-msgstr "Προεπιλογές εξαγωγής"
+msgstr "Εξαγωγή της ρουτίνας %s"
#: db_routines.php:283 libraries/db_routines.lib.php:960
-#, fuzzy, php-format
-#| msgid "Invalid server index: %s"
+#, php-format
msgid "Invalid routine type: \"%s\""
-msgstr "Μη έγκυρο ευρετήριο διακομιστή: %s"
+msgstr "Μη έγκυρος τύπος ρουτίνας: «%s»"
#: db_routines.php:304
msgid "Sorry, we failed to restore the dropped routine."
@@ -571,32 +566,26 @@ msgid "The backed up query was:"
msgstr ""
#: db_routines.php:309
-#, fuzzy, php-format
-#| msgid "Column %s has been dropped"
+#, php-format
msgid "Routine %1$s has been modified."
-msgstr "Η στήλη %s διεγράφη"
+msgstr "Η ρουτίνα %1$s έχει αλλαχτεί."
#: db_routines.php:322
-#, fuzzy, php-format
-#| msgid "Table %1$s has been created."
+#, php-format
msgid "Routine %1$s has been created."
-msgstr "Ο πίνακας %1$s έχει δημιουργηθεί."
+msgstr "Η ρουτίνα %1$s έχει δημιουργηθεί."
#: db_routines.php:330
msgid "One or more errors have occured while processing your request:"
msgstr ""
#: db_routines.php:374
-#, fuzzy
-#| msgid "Create relation"
msgid "Create routine"
-msgstr "Δημιουργία συσχέτισης"
+msgstr "Δημιουργία ρουτίνας"
#: db_routines.php:378
-#, fuzzy
-#| msgid "Edit mode"
msgid "Edit routine"
-msgstr "Κατάσταση επεξεργασίας"
+msgstr "Επεξεργασία ρουτίνας"
#: db_routines.php:429
msgid ""
@@ -607,7 +596,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Άρνηση Πρόσβασης"
@@ -728,11 +717,11 @@ msgstr "Η παρακολούθηση δεν είναι ενεργοποιημέ
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -749,7 +738,7 @@ msgstr "Αναπαραγωγή"
msgid "Sum"
msgstr "Σύνολο"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
@@ -799,8 +788,8 @@ msgstr "Εμφάνιση για εκτύπωση"
msgid "Empty"
msgstr "Άδειασμα"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -873,9 +862,9 @@ msgstr "Ενημερώθηκε"
msgid "Status"
msgstr "Κατάσταση"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -969,11 +958,11 @@ msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s."
#: import.php:58
#, 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."
msgstr ""
-"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην "
-"%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
+"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %"
+"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1153,11 +1142,11 @@ msgstr "Διαγραφή των επιλεγμένων χρηστών"
msgid "Close"
msgstr "Κλείσιμο"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Επεξεργασία"
@@ -1690,226 +1679,12 @@ msgstr "Λεπτό"
msgid "Second"
msgstr "Δευτερόλεπτο"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Μέγεθος γραμματοσειράς"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Το προς αποστολή αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php."
-"ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Το προς αποστολή αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE όπως ορίστηκε "
-"στη φόρμα HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Το απεσταλμένο αρχείο εστάλει μόνο μερικώς."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Χάθηκε ένας προσωρινός φάκελος."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Αποτυχία εγγραφής του αρχείου στο δίσκο."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Η αποστολή του αρχείου σταμάτησε λόγω επέκτασης."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Άγνωστο σφάλμα στην αποστολή αρχείου."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Σφάλμα μετακίνησης του αρχείου αποστολής. Δείτε τις [a@./Documentation."
-"html#faq1_11@Documentation]ΣΑΕ 1.11[/a]"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Δεν ορίστηκε ευρετήριο!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Ευρετήρια"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Μοναδικό"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Συμπιεσμένο"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Μοναδικότητα"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Σχόλιο"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Το πρωτεύον κλειδί διεγράφη"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Το ευρετήριο %s διεγράφη"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Τα ευρετήρια %1$s και %2$s φαίνεται να είναι ίσα και ένα από αυτά μπορεί να "
-"απομακρυνθεί."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Βάσεις Δεδομένων"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Λάθος"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Επηρεάστηκε %1$d γραμμή."
-msgstr[1] "Επηρεάστηκαν %1$d γραμμές."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Διαγράφτηκε %1$d γραμμή."
-msgstr[1] "Διαγράφτηκαν %1$d γραμμές."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Εισήχθηκε %1$d γραμμή."
-msgstr[1] "Εισήχθηκαν %1$d γραμμές."
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Αδύνατη η αποθήκευση πρόσφατου πίνακα"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Πρόσφατοι πίνακες"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Δεν υπάρχουν πρόσφατοι πίνακες"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Δεν υπάρχουν λεπτομερείς πληροφορίες κατάστασης για αυτή τη μηχανή "
-"αποθήκευσης."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "Η %s είναι διαθέσιμη σε αυτό το διακομιστή MySQL."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "Η %s έχει απενεργοποιήθεί σε αυτό το διακομιστή MySQL."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Αύτος ο διακομιστής MySQL δεν υποστηρίζει τη μηχανή αποθήκευσης %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Μη έγκυρη βάση δεδομένων"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Μη έγκυρο όνομα πίνακα"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Σφάλμα μετονομασίας του πίνακα %1$s σε %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Ο Πίνακας %s μετονομάσθηκε σε %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Αδύνατη η αποθήκευση των ρυθμίσεων πίνακα για το περιβάλλον χρήστη"
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Βρέθηκε μη έγκυρη διαδρομή εικόνας για το θέμα %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Προεπισκόπηση μη διαθέσιμη."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "πάρτε το"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Το προεπιλεγμένο θέμα %s δεν βρέθηκε!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Το θέμα %s δεν βρέθηκε!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Η διαδρομή θέματος δεν βρέθηκε για το θέμα %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr "Θέμα"
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Αδύνατη η σύνδεση: άκυρες ρυθμίσεις."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Καλωσήρθατε στο %s"
@@ -1917,8 +1692,8 @@ msgstr "Καλωσήρθατε στο %s"
#: libraries/auth/config.auth.lib.php:106
#, 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 για να δημιουργήσετε ένα."
@@ -1936,45 +1711,45 @@ msgstr ""
"και να βεβαιωθείτε ότι αντιστοιχούν σε αυτά που σας έχει δώσει ο "
"διαχειρηστής του διακομιστή MySQL."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Σύνδεση"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Τεκμηρίωση phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
"Μπορείτε να εισάγετε όνομα διακομιστή/διεύθυνση ΙΡ και θύρα χωρισμένα με "
"κενό."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Διακομιστής"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Όνομα χρήστη:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Κωδικός πρόσβασης:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Επιλογή Διακομιστή"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Από αυτό το σημείο πρέπει να έχετε ενεργοποιημένα cookies."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -1982,15 +1757,15 @@ msgstr ""
"Η σύνδεση χωρίς κωδικό πρόσβασης απαγορεύεται από τις ρυθμίσεις (δείτε τη "
"μεταβλητή AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
"Καμιά δραστηριότητα εδώ και %s δευτερόλεπτα τουλάχιστον. Ξανασυνδεθείτε"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Δεν ήταν δυνατή η σύνδεση με τον διακομιστή MySQL"
@@ -2029,6 +1804,14 @@ msgstr "Σφάλμα PBMS"
msgid "PBMS connection failed:"
msgstr "Η σύνδεση PBMS απέτυχε"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Λάθος"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "Η λήψη πληροφοριών BLOB από την PBMS απέτυχε:"
@@ -2081,6 +1864,11 @@ msgstr "Πίνακες"
msgid "Data"
msgstr "Δεδομένα"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Ευρετήρια"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2110,13 +1898,13 @@ msgstr "Έλεγχος Δικαιωμάτων"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Αδύνατη η αποθήκευση ρυθμίσεων"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2364,78 +2152,9 @@ msgstr "Δεν υπάρχουν αρχεία προς αποστολή"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Και τα δύο"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Πουθενά"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Αριστερά"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Δεξιά"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Άνοιγμα"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Κλεισμένο"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "δομή"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "δεδομένα"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "δομή και δεδομένα"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Γρήγορο - προβολή μονό των ελάχιστων επιλογών για ρύθμιση"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Προσαρμογή - προβολή όλων των πιθανών επιλογών για ρύθμιση"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-"Προσαρμογή - όπως παραπάνω αλλά χωρίς την επιλογή γρήγορου/προσαρμοσμένου"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "πλήρεις εντολές εισαγωγής (Insert)"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "Εκτεταμένες εντολές εισαγωγής (Insert)"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "αμφότερα τα παραπάνω"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "κανένα από τα παραπάνω"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Μέγεθος γραμματοσειράς"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3095,6 +2814,12 @@ msgstr "Ορισμός φακέλων εισαγωγής-εξαγωγής και
msgid "LaTeX"
msgstr "Έγγραφο LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Βάσεις Δεδομένων"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Επιλογές προβολής βάσεων δεδομένων"
@@ -4756,6 +4481,79 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Εσφαλμένη διεύθυνση IP: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Και τα δύο"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Πουθενά"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Αριστερά"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Δεξιά"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Άνοιγμα"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Κλεισμένο"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "δομή"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "δεδομένα"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "δομή και δεδομένα"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Γρήγορο - προβολή μονό των ελάχιστων επιλογών για ρύθμιση"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Προσαρμογή - προβολή όλων των πιθανών επιλογών για ρύθμιση"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+"Προσαρμογή - όπως παραπάνω αλλά χωρίς την επιλογή γρήγορου/προσαρμοσμένου"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "πλήρεις εντολές εισαγωγής (Insert)"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "Εκτεταμένες εντολές εισαγωγής (Insert)"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "αμφότερα τα παραπάνω"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "κανένα από τα παραπάνω"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4826,6 +4624,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "Προσθήκη ενός νέου διακομιστή"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr "Ανεπιτυχής σύνδεση του χρήστη ελέγχου όπως ορίστηκε στη ρύθμισή σας."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Ο διακομιστής δεν αποκρίνεται"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(ή η τοπική υποδοχή του διακομιστή MySQL δεν έχει ρυθμιστεί σωστά)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Λεπτομέρειες..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4900,9 +4715,9 @@ msgstr "Μήκος/Τιμές*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4961,6 +4776,11 @@ msgstr "Ασφάλεια"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Σχόλιο"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5027,23 +4847,6 @@ msgstr ""
"Ίσως είναι κατά προσέγγιση. Δείτε τις [a@./Documentation."
"html#faq3_11@Documentation]ΣΑΕ 3.11[/a]"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr "Ανεπιτυχής σύνδεση του χρήστη ελέγχου όπως ορίστηκε στη ρύθμισή σας."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Ο διακομιστής δεν αποκρίνεται"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(ή η τοπική υποδοχή του διακομιστή MySQL δεν έχει ρυθμιστεί σωστά)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Λεπτομέρειες..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5182,8 +4985,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, έτσι "
"μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν "
@@ -5802,8 +5605,8 @@ msgid ""
"Documentation and further information about PBMS can be found on %sThe "
"PrimeBase Media Streaming home page%s."
msgstr ""
-"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην "
-"%sΙστοσελίδα του PrimeBase Media Streaming%s."
+"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην %"
+"sΙστοσελίδα του PrimeBase Media Streaming%s."
#: libraries/engines/pbms.lib.php:96 libraries/engines/pbxt.lib.php:127
msgid "Related Links"
@@ -5972,11 +5775,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@@ -6282,6 +6085,48 @@ msgstr "Προβολές"
msgid "Export contents"
msgstr "Εξαγωγή περιεχομένων"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Το προς αποστολή αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php."
+"ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Το προς αποστολή αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE όπως ορίστηκε "
+"στη φόρμα HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Το απεσταλμένο αρχείο εστάλει μόνο μερικώς."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Χάθηκε ένας προσωρινός φάκελος."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Αποτυχία εγγραφής του αρχείου στο δίσκο."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Η αποστολή του αρχείου σταμάτησε λόγω επέκτασης."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Άγνωστο σφάλμα στην αποστολή αρχείου."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Σφάλμα μετακίνησης του αρχείου αποστολής. Δείτε τις [a@./Documentation."
+"html#faq1_11@Documentation]ΣΑΕ 1.11[/a]"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6301,40 +6146,6 @@ msgstr "αποτέλεσμα SQL"
msgid "Generated by"
msgstr "Δημιουργήθηκε από:"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Οι ακόλουθες δομές δημιουργήθηκαν ή αλλάχτηκαν. Εδώ μπορείτε να:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Δείτε τα περιεχόμενα δομής πατώντας στο όνομα"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "Αλλάξτε τις ρυθμίσεις πατώντας τον αντίστοιχο σύνδεσμο «Επιλογές»"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Επεξεργαστεί τη δομή από τον σύνδεσμο «Δομή»"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Μετάβαση στη βάση δεδομένων"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "ρυθμίσεις"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Μετάβαση στον πίνακα"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Μετάβαση στην προβολή"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6401,6 +6212,40 @@ msgstr "Ονόματα στηλών"
msgid "This plugin does not support compressed imports!"
msgstr "Αυτό το πρόσθετο δεν υποστηρίζει συμπιεσμένες εισαγωγές!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Οι ακόλουθες δομές δημιουργήθηκαν ή αλλάχτηκαν. Εδώ μπορείτε να:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Δείτε τα περιεχόμενα δομής πατώντας στο όνομα"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "Αλλάξτε τις ρυθμίσεις πατώντας τον αντίστοιχο σύνδεσμο «Επιλογές»"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Επεξεργαστεί τη δομή από τον σύνδεσμο «Δομή»"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Μετάβαση στη βάση δεδομένων"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "ρυθμίσεις"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Μετάβαση στον πίνακα"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Μετάβαση στην προβολή"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr "Εισαγωγή ποσοστών ως κανονικά δεκαδικά (π.χ. 12.00% αντί .12)"
@@ -6425,6 +6270,42 @@ msgstr ""
"Το αρχείο XML που ορίστηκε ήταν σε λανθασμένη μορφή ή ανεπαρκές. Διορθώστε "
"το θέμα και δοκιμάστε ξανά."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Δεν ορίστηκε ευρετήριο!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Μοναδικό"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Συμπιεσμένο"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Μοναδικότητα"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Το πρωτεύον κλειδί διεγράφη"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Το ευρετήριο %s διεγράφη"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Τα ευρετήρια %1$s και %2$s φαίνεται να είναι ίσα και ένα από αυτά μπορεί να "
+"απομακρυνθεί."
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6435,6 +6316,27 @@ msgstr "Καμία"
msgid "Convert to Kana"
msgstr "Μετατροπή σε Kana"
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Επηρεάστηκε %1$d γραμμή."
+msgstr[1] "Επηρεάστηκαν %1$d γραμμές."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Διαγράφτηκε %1$d γραμμή."
+msgstr[1] "Διαγράφτηκαν %1$d γραμμές."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Εισήχθηκε %1$d γραμμή."
+msgstr[1] "Εισήχθηκαν %1$d γραμμές."
+
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "Από"
@@ -6673,6 +6575,18 @@ msgstr "Επαναφόρτωση πλαισίου πλοήγησης"
msgid "This format has no options"
msgstr "Αυτή η μορφή δεν έχει επιλογές"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Αδύνατη η αποθήκευση πρόσφατου πίνακα"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Πρόσφατοι πίνακες"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Δεν υπάρχουν πρόσφατοι πίνακες"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "ΛΑΘΟΣ"
@@ -7059,61 +6973,6 @@ msgstr "Διαφορά"
msgid "Target database"
msgstr "Βάση δεδομένων προορισμού"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Εκτέλεση ερωτήματος/ερωτημάτων SQL στο διακομιστή «%s»"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Εκτέλεση εντολής/εντολών SQL στη βάση δεδομένων %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Καθάρισμα"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Στήλες"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Αποθήκευση αυτού του ερωτήματος SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Αντικατάσταση υπάρχοντος σελιδοδείκτη με το ίδιο όνομα"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Να μην αλλάξει το ερώτημα από εξωτερική πηγή"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Διαχωριστικό"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Επανεμφάνιση αυτού του ερώτηματος εδώ"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Μόνο ανάγνωση"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Τοποθεσία του αρχείου κειμένου"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "Υποκατάλογος αποθήκευσης αρχείων διακομιστή"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7177,6 +7036,61 @@ msgstr "Άγνωστο Αναγνωριστικό"
msgid "Unknown Punctuation String"
msgstr "Άγνωστο σημείο στίξης"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Εκτέλεση ερωτήματος/ερωτημάτων SQL στο διακομιστή «%s»"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Εκτέλεση εντολής/εντολών SQL στη βάση δεδομένων %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Καθάρισμα"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Στήλες"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Αποθήκευση αυτού του ερωτήματος SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Αντικατάσταση υπάρχοντος σελιδοδείκτη με το ίδιο όνομα"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Να μην αλλάξει το ερώτημα από εξωτερική πηγή"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Διαχωριστικό"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Επανεμφάνιση αυτού του ερώτηματος εδώ"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Μόνο ανάγνωση"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Τοποθεσία του αρχείου κειμένου"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "Υποκατάλογος αποθήκευσης αρχείων διακομιστή"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7186,6 +7100,50 @@ msgstr ""
"Ο επικυρωτής SQL δεν μπόρεσε να ξεκινήσει. Ελέγξτε ότι έχετε εγκαταστήσει "
"της απαραίτητες επεκτάσεις της php όπως περιγράφεται στην %sτεκμηρίωση%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Δεν υπάρχουν λεπτομερείς πληροφορίες κατάστασης για αυτή τη μηχανή "
+"αποθήκευσης."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "Η %s είναι διαθέσιμη σε αυτό το διακομιστή MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "Η %s έχει απενεργοποιήθεί σε αυτό το διακομιστή MySQL."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Αύτος ο διακομιστής MySQL δεν υποστηρίζει τη μηχανή αποθήκευσης %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Μη έγκυρη βάση δεδομένων"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Μη έγκυρο όνομα πίνακα"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Σφάλμα μετονομασίας του πίνακα %1$s σε %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Ο Πίνακας %s μετονομάσθηκε σε %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Αδύνατη η αποθήκευση των ρυθμίσεων πίνακα για το περιβάλλον χρήστη"
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Ο πίνακας φαίνεται να είναι άδειος!"
@@ -7304,6 +7262,38 @@ msgstr "Ορισμός ΚΑΤΑΤΜΗΣΗΣ (PARTITION)"
msgid "+ Add a new value"
msgstr "+ Προσθήκη νέας τιμής"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Βρέθηκε μη έγκυρη διαδρομή εικόνας για το θέμα %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Προεπισκόπηση μη διαθέσιμη."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "πάρτε το"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Το προεπιλεγμένο θέμα %s δεν βρέθηκε!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Το θέμα %s δεν βρέθηκε!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Η διαδρομή θέματος δεν βρέθηκε για το θέμα %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "Θέμα"
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7622,8 +7612,8 @@ msgid ""
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"Η αποθήκευση ρυθμίσεων του phpMyAdmin δεν έχει ρυθμιστεί πλήρως. Μερικά "
-"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε "
-"%sεδώ%s."
+"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε %"
+"sεδώ%s."
#: main.php:314
msgid ""
@@ -8366,8 +8356,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. Το περιεχόμενο αυτών των πινάκων μπορεί "
@@ -9946,8 +9936,8 @@ msgid ""
"(currently %d)."
msgstr ""
"Αν η %sεγκυρότητα Σύνδεσης cookie%s είναι μεγαλύτερη από 1440 δευτερόλεπτα "
-"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime"
-"%s είναι μικρότερο από την τιμή της (τρέχουσα: %d)."
+"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime%"
+"s είναι μικρότερο από την τιμή της (τρέχουσα: %d)."
#: setup/lib/index.lib.php:262
#, php-format
diff --git a/po/en_GB.po b/po/en_GB.po
index 431c47e2b1..70631b9f7f 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
-"PO-Revision-Date: 2011-06-17 17:08+0200\n"
-"Last-Translator: Marc Delisle \n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
+"PO-Revision-Date: 2011-06-23 00:01+0200\n"
+"Last-Translator: Robert Readman \n"
"Language-Team: english-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: Pootle 2.0.5\n"
@@ -48,10 +48,10 @@ msgstr "Search"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Search"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Go"
@@ -132,9 +132,9 @@ msgstr "Database comment: "
msgid "Table comments"
msgstr "Table comments"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Table comments"
msgid "Column"
msgstr "Column"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Column"
msgid "Type"
msgstr "Type"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "Links to"
msgid "Comments"
msgstr "Comments"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "Comments"
msgid "No"
msgstr "No"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -332,8 +333,8 @@ msgstr "Add constraints"
msgid "Switch to copied database"
msgstr "Switch to copied database"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -497,8 +498,8 @@ msgstr "SQL query on database %s:"
msgid "Submit Query"
msgstr "Submit Query"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -508,14 +509,13 @@ msgstr "Your SQL query has been executed successfully"
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "%d row affected by the last statement inside the procedure"
+msgstr[1] "%d rows affected by the last statement inside the procedure"
#: db_routines.php:165
-#, fuzzy, php-format
-#| msgid "Allows executing stored routines."
+#, php-format
msgid "Execution results of routine %s"
-msgstr "Allows executing stored routines."
+msgstr "Execution results of routine %s"
#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
@@ -526,7 +526,7 @@ msgstr "MySQL returned an empty result set (i.e. zero rows)."
#: db_routines.php:319
#, php-format
msgid "Query \"%s\" failed"
-msgstr ""
+msgstr "Query \"%s\" failed"
#: db_routines.php:191 db_routines.php:291 db_routines.php:296
#: db_routines.php:306 db_routines.php:320 libraries/common.lib.php:609
@@ -534,68 +534,57 @@ msgid "MySQL said: "
msgstr "MySQL said: "
#: db_routines.php:208 db_routines.php:263 db_routines.php:402
-#, fuzzy
-#| msgid "Error in Processing Request"
msgid "Error in processing request"
-msgstr "Error in Processing Request"
+msgstr "Error in processing request"
#: db_routines.php:209 db_routines.php:264 db_routines.php:403
-#, fuzzy, php-format
-#| msgid "No tables found in database"
+#, php-format
msgid "No routine with name %s found in database %s"
-msgstr "No tables found in database."
+msgstr "No routine with name %s found in database %s"
#: db_routines.php:230 db_routines.php:234
msgid "Execute routine"
-msgstr ""
+msgstr "Execute routine"
#: db_routines.php:254 db_routines.php:258
-#, fuzzy, php-format
-#| msgid "Export defaults"
+#, php-format
msgid "Export of routine %s"
-msgstr "Export defaults"
+msgstr "Export of routine %s"
#: db_routines.php:283 libraries/db_routines.lib.php:960
-#, fuzzy, php-format
-#| msgid "Invalid server index: %s"
+#, php-format
msgid "Invalid routine type: \"%s\""
-msgstr "Invalid server index: %s"
+msgstr "Invalid routine type: \"%s\""
#: db_routines.php:304
msgid "Sorry, we failed to restore the dropped routine."
-msgstr ""
+msgstr "Sorry, we failed to restore the dropped routine."
#: db_routines.php:305
msgid "The backed up query was:"
-msgstr ""
+msgstr "The backed up query was:"
#: db_routines.php:309
-#, fuzzy, php-format
-#| msgid "Column %s has been dropped"
+#, php-format
msgid "Routine %1$s has been modified."
-msgstr "Column %s has been dropped"
+msgstr "Routine %1$s has been modified."
#: db_routines.php:322
-#, fuzzy, php-format
-#| msgid "Table %1$s has been created."
+#, php-format
msgid "Routine %1$s has been created."
-msgstr "Table %1$s has been created."
+msgstr "Routine %1$s has been created."
#: db_routines.php:330
msgid "One or more errors have occured while processing your request:"
-msgstr ""
+msgstr "One or more errors have occurred while processing your request:"
#: db_routines.php:374
-#, fuzzy
-#| msgid "Create relation"
msgid "Create routine"
-msgstr "Create relation"
+msgstr "Create routine"
#: db_routines.php:378
-#, fuzzy
-#| msgid "Edit mode"
msgid "Edit routine"
-msgstr "Edit mode"
+msgstr "Edit routine"
#: db_routines.php:429
msgid ""
@@ -603,10 +592,13 @@ msgid ""
"handling multi queries. The execution of some stored routines may fail!"
"b> Please use the improved 'mysqli' extension to avoid any problems."
msgstr ""
+"You are using PHP's deprecated 'mysql' extension, which is not capable of "
+"handling multi queries. The execution of some stored routines may fail!"
+"b> Please use the improved 'mysqli' extension to avoid any problems."
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Access denied"
@@ -674,10 +666,8 @@ msgid "Search in database"
msgstr "Search in database"
#: db_search.php:300
-#, fuzzy
-#| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgid "Words or values to search for (wildcard: \"%\"):"
-msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Words or values to search for (wildcard: \"%\"):"
#: db_search.php:305
msgid "Find:"
@@ -688,10 +678,8 @@ msgid "Words are separated by a space character (\" \")."
msgstr "Words are separated by a space character (\" \")."
#: db_search.php:323
-#, fuzzy
-#| msgid "Inside table(s):"
msgid "Inside tables:"
-msgstr "Inside table(s):"
+msgstr "Inside tables:"
#: db_search.php:353
msgid "Inside column:"
@@ -727,11 +715,11 @@ msgstr "Tracking is not active."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -748,7 +736,7 @@ msgstr "Replication"
msgid "Sum"
msgstr "Sum"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s is the default storage engine on this MySQL server."
@@ -797,8 +785,8 @@ msgstr "Print view"
msgid "Empty"
msgstr "Empty"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -871,9 +859,9 @@ msgstr "Updated"
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -966,11 +954,11 @@ msgstr "Dump has been saved to file %s."
#: import.php:58
#, 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."
msgstr ""
-"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."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1144,11 +1132,11 @@ msgstr "Removing Selected Users"
msgid "Close"
msgstr "Close"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Edit"
@@ -1311,13 +1299,11 @@ msgstr "Deleting"
#: js/messages.php:122
msgid "The definition of a stored function must contain a RETURN statement!"
-msgstr ""
+msgstr "The definition of a stored function must contain a RETURN statement!"
#: js/messages.php:123
-#, fuzzy
-#| msgid "Missing value in the form!"
msgid "Value too long in the form!"
-msgstr "Missing value in the form!"
+msgstr "Value too long in the form!"
#: js/messages.php:126
msgid ""
@@ -1682,224 +1668,12 @@ msgstr "Minute"
msgid "Second"
msgstr "Second"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Font size"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"The uploaded file exceeds the upload_max_filesize directive in php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "The uploaded file was only partially uploaded."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Missing a temporary folder."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Failed to write file to disk."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "File upload stopped by extension."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Unknown error in file upload."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "No index defined!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indexes"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unique"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Packed"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinality"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Comment"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "The primary key has been dropped"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Index %s has been dropped"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Databases"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Error"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d row affected."
-msgstr[1] "%1$d rows affected."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d row deleted."
-msgstr[1] "%1$d rows deleted."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d row inserted."
-msgstr[1] "%1$d rows inserted."
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Could not save recent table"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Recent tables"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "There are no recent tables"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"There is no detailed status information available for this storage engine."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s is available on this MySQL server."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s has been disabled for this MySQL server."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "This MySQL server does not support the %s storage engine."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Invalid database"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Invalid table name"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Error renaming table %1$s to %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Table %s has been renamed to %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Could not save table UI preferences"
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "No valid image path for theme %s found!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "No preview available."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "take it"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Default theme %s not found!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Theme %s not found!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Theme path not found for theme %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr "Theme"
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Cannot connect: invalid settings."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Welcome to %s"
@@ -1907,11 +1681,11 @@ msgstr "Welcome to %s"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
msgid ""
@@ -1925,57 +1699,57 @@ msgstr ""
"configuration and make sure that they correspond to the information given by "
"the administrator of the MySQL server."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Log in"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin documentation"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "You can enter hostname/IP address and port separated by space."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Server:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Username:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Password:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Server Choice"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Cookies must be enabled past this point."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "No activity within %s seconds; please log in again"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Cannot log in to the MySQL server"
@@ -2014,6 +1788,14 @@ msgstr "PBMS error"
msgid "PBMS connection failed:"
msgstr "PBMS connection failed:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Error"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS get BLOB info failed:"
@@ -2066,6 +1848,11 @@ msgstr "Tables"
msgid "Data"
msgstr "Data"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indexes"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2094,15 +1881,21 @@ msgstr "Check Privileges"
#: libraries/common.inc.php:587
#, fuzzy
-#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
-msgstr "Could not save configuration"
+#| msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
+msgstr "Failed to to read configuration file"
#: libraries/common.inc.php:588
+#, fuzzy
+#| msgid ""
+#| "This usually means there is a syntax error in it, please check any errors "
+#| "shown bellow."
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
+"This usually means there is a syntax error in it, please check any errors "
+"shown bellow."
#: libraries/common.inc.php:595
#, php-format
@@ -2344,79 +2137,11 @@ msgstr "There are no files to upload"
#: libraries/common.lib.php:2964 libraries/common.lib.php:2965
msgid "Execute"
-msgstr ""
+msgstr "Execute"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Both"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Nowhere"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Left"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Right"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Open"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Closed"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "structure"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "data"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "structure and data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Quick - display only the minimal options to configure"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Custom - display all possible options to configure"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Custom - like above, but without the quick/custom choice"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "complete inserts"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "extended inserts"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "both of the above"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "neither of the above"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Font size"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3069,6 +2794,12 @@ msgstr "Set import and export directories and compression options"
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Databases"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Databases display options"
@@ -4680,6 +4411,78 @@ msgstr "Empty phpMyAdmin control user password while using pmadb"
msgid "Incorrect IP address: %s"
msgstr "Incorrect IP address: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Both"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Nowhere"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Left"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Right"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Open"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Closed"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "structure"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "data"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "structure and data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Quick - display only the minimal options to configure"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Custom - display all possible options to configure"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Custom - like above, but without the quick/custom choice"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "complete inserts"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "extended inserts"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "both of the above"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "neither of the above"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4692,22 +4495,19 @@ msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "The %s extension is missing. Please check your PHP configuration."
#: libraries/db_events.inc.php:30
-#, fuzzy, php-format
-#| msgid "Export contents"
+#, php-format
msgid "Export of event %s"
-msgstr "Export contents"
+msgstr "Export of event %s"
#: libraries/db_events.inc.php:34
-#, fuzzy, php-format
-#| msgid "Export contents"
+#, php-format
msgid "Export of event \"%s\""
-msgstr "Export contents"
+msgstr "Export of event \"%s\""
#: libraries/db_events.inc.php:40
-#, fuzzy, php-format
-#| msgid "No tables found in database"
+#, php-format
msgid "No event with name %s found in database %s"
-msgstr "No tables found in database."
+msgstr "No event with name %s found in database %s"
#: libraries/db_events.inc.php:56 libraries/db_links.inc.php:101
#: libraries/export/sql.php:609
@@ -4715,10 +4515,8 @@ msgid "Events"
msgstr "Events"
#: libraries/db_events.inc.php:58 libraries/db_events.inc.php:60
-#, fuzzy
-#| msgid "There are no files to upload"
msgid "There are no events to display."
-msgstr "There are no files to upload"
+msgstr "There are no events to display."
#: libraries/db_events.inc.php:67 libraries/db_routines.lib.php:690
#: libraries/db_routines.lib.php:846 libraries/db_routines.lib.php:1214
@@ -4730,25 +4528,40 @@ msgstr "Name"
#: libraries/db_events.inc.php:129
msgid "The event scheduler is enabled"
-msgstr ""
+msgstr "The event scheduler is enabled"
#: libraries/db_events.inc.php:129
msgid "The event scheduler is disabled"
-msgstr ""
+msgstr "The event scheduler is disabled"
#: libraries/db_events.inc.php:131
msgid "Turn it on"
-msgstr ""
+msgstr "Turn it on"
#: libraries/db_events.inc.php:131
msgid "Turn it off"
-msgstr ""
+msgstr "Turn it off"
#: libraries/db_events.inc.php:141
-#, fuzzy
-#| msgid "Add a new server"
msgid "Add a new Event"
-msgstr "Add a new server"
+msgstr "Add a new Event"
+
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr "Connection for controluser as defined in your configuration failed."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "The server is not responding"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(or the local MySQL server's socket is not correctly configured)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Details..."
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
@@ -4784,32 +4597,25 @@ msgid "Triggers"
msgstr "Triggers"
#: libraries/db_routines.lib.php:659
-#, fuzzy
-#| msgid "Details..."
msgid "Details"
-msgstr "Details..."
+msgstr "Details"
#: libraries/db_routines.lib.php:662
-#, fuzzy
-#| msgid "Routines"
msgid "Routine name"
-msgstr "Routines"
+msgstr "Routine name"
#: libraries/db_routines.lib.php:679
-#, fuzzy, php-format
-#| msgid "Change"
+#, php-format
msgid "Change to %s"
-msgstr "Change"
+msgstr "Change to %s"
#: libraries/db_routines.lib.php:684
msgid "Parameters"
-msgstr ""
+msgstr "Parameters"
#: libraries/db_routines.lib.php:689
-#, fuzzy
-#| msgid "Direct links"
msgid "Direction"
-msgstr "Direct links"
+msgstr "Direction"
#: libraries/db_routines.lib.php:692 libraries/tbl_properties.inc.php:105
msgid "Length/Values"
@@ -4824,9 +4630,9 @@ msgstr "Length/Values"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4834,62 +4640,53 @@ msgid "Options"
msgstr "Options"
#: libraries/db_routines.lib.php:707
-#, fuzzy
-#| msgid "Add prefix"
msgid "Add parameter"
-msgstr "Add prefix"
+msgstr "Add parameter"
#: libraries/db_routines.lib.php:710
-#, fuzzy
-#| msgid "Remove database"
msgid "Remove last parameter"
-msgstr "Remove database"
+msgstr "Remove last parameter"
#: libraries/db_routines.lib.php:715 libraries/db_routines.lib.php:1217
msgid "Return type"
msgstr "Return type"
#: libraries/db_routines.lib.php:721
-#, fuzzy
-#| msgid "Length/Values"
msgid "Return length/values"
-msgstr "Length/Values"
+msgstr "Return length/values"
#: libraries/db_routines.lib.php:726
-#, fuzzy
-#| msgid "Table options"
msgid "Return options"
-msgstr "Table options"
+msgstr "Return options"
#: libraries/db_routines.lib.php:745
-#, fuzzy
-#| msgid "Description"
msgid "Definition"
-msgstr "Description"
+msgstr "Definition"
#: libraries/db_routines.lib.php:749
msgid "Is deterministic"
-msgstr ""
+msgstr "Is deterministic"
#: libraries/db_routines.lib.php:753
msgid "Definer"
-msgstr ""
+msgstr "Definer"
#: libraries/db_routines.lib.php:758
-#, fuzzy
-#| msgid "Security"
msgid "Security type"
-msgstr "Security"
+msgstr "Security type"
#: libraries/db_routines.lib.php:765
msgid "SQL data access"
-msgstr ""
+msgstr "SQL data access"
+
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Comment"
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
-#, fuzzy
-#| msgid "Routines"
msgid "Routine parameters"
-msgstr "Routines"
+msgstr "Routine parameters"
#: libraries/db_routines.lib.php:849 tbl_change.php:284 tbl_change.php:322
msgid "Function"
@@ -4904,44 +4701,40 @@ msgstr "Value"
#: libraries/db_routines.lib.php:965
msgid "You must provide a routine name"
-msgstr ""
+msgstr "You must provide a routine name"
#: libraries/db_routines.lib.php:984
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
-msgstr ""
+msgstr "Invalid direction \"%s\" given for parameter."
#: libraries/db_routines.lib.php:995 libraries/db_routines.lib.php:1036
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
+"You must provide length/values for routine parameters of type ENUM, SET, "
+"VARCHAR and VARBINARY."
#: libraries/db_routines.lib.php:1020
msgid "You must provide a name and a type for each routine parameter."
-msgstr ""
+msgstr "You must provide a name and a type for each routine parameter."
#: libraries/db_routines.lib.php:1077
msgid "You must provide a routine definition."
-msgstr ""
+msgstr "You must provide a routine definition."
#: libraries/db_routines.lib.php:1209
-#, fuzzy
-#| msgid "There are no files to upload"
msgid "There are no routines to display."
-msgstr "There are no files to upload"
+msgstr "There are no routines to display."
#: libraries/db_routines.lib.php:1253
-#, fuzzy
-#| msgid "Add index"
msgid "Add routine"
-msgstr "Add index"
+msgstr "Add routine"
#: libraries/db_routines.lib.php:1256
-#, fuzzy
-#| msgid "You don't have sufficient privileges to be here right now!"
msgid "You do not have the necessary privileges to create a new routine"
-msgstr "You don't have sufficient privileges to be here right now!"
+msgstr "You do not have the necessary privileges to create a new routine"
#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2121
msgid ""
@@ -4951,23 +4744,6 @@ msgstr ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr "Connection for controluser as defined in your configuration failed."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "The server is not responding"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(or the local MySQL server's socket is not correctly configured)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Details..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5106,12 +4882,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:275
msgid "use this for future exports"
@@ -5337,15 +5113,15 @@ msgstr "Browser transformation"
#: libraries/display_tbl.lib.php:642
msgid "Geometry"
-msgstr ""
+msgstr "Geometry"
#: libraries/display_tbl.lib.php:643
msgid "Well Known Text"
-msgstr ""
+msgstr "Well Known Text"
#: libraries/display_tbl.lib.php:644
msgid "Well Known Binary"
-msgstr ""
+msgstr "Well Known Binary"
#: libraries/display_tbl.lib.php:1288
msgid "Copy"
@@ -5391,7 +5167,7 @@ msgstr "Display chart"
#: libraries/display_tbl.lib.php:2548
msgid "Visualize GIS data"
-msgstr ""
+msgstr "Visualize GIS data"
#: libraries/display_tbl.lib.php:2568
msgid "Create view"
@@ -5402,27 +5178,23 @@ msgid "Link not found"
msgstr "Link not found"
#: libraries/display_triggers.inc.php:35
-#, fuzzy, php-format
-#| msgid "Export contents"
+#, php-format
msgid "Export of trigger %s"
-msgstr "Export contents"
+msgstr "Export of trigger %s"
#: libraries/display_triggers.inc.php:39
#, php-format
msgid "Export of trigger \"%s\""
-msgstr ""
+msgstr "Export of trigger \"%s\""
#: libraries/display_triggers.inc.php:47
-#, fuzzy, php-format
-#| msgid "No valid image path for theme %s found!"
+#, php-format
msgid "No trigger with name %s found"
-msgstr "No valid image path for theme %s found!"
+msgstr "No trigger with name %s found"
#: libraries/display_triggers.inc.php:64 libraries/display_triggers.inc.php:66
-#, fuzzy
-#| msgid "There are no files to upload"
msgid "There are no triggers to display."
-msgstr "There are no files to upload"
+msgstr "There are no triggers to display."
#: libraries/display_triggers.inc.php:77 server_status.php:800 sql.php:936
msgid "Time"
@@ -5433,10 +5205,8 @@ msgid "Event"
msgstr "Event"
#: libraries/display_triggers.inc.php:120
-#, fuzzy
-#| msgid "Add a new server"
msgid "Add a new Trigger"
-msgstr "Add a new server"
+msgstr "Add a new Trigger"
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
@@ -5879,11 +5649,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@@ -6186,16 +5956,55 @@ msgstr "Views"
msgid "Export contents"
msgstr "Export contents"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"The uploaded file exceeds the upload_max_filesize directive in php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "The uploaded file was only partially uploaded."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Missing a temporary folder."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Failed to write file to disk."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "File upload stopped by extension."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Unknown error in file upload."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
msgstr "Open new phpMyAdmin window"
#: libraries/gis_visualization.lib.php:129
-#, fuzzy
-#| msgid "No data found for the chart."
msgid "No data found for GIS visualization."
-msgstr "No data found for the chart."
+msgstr "No data found for GIS visualisation."
#: libraries/header_printview.inc.php:49 libraries/header_printview.inc.php:54
msgid "SQL result"
@@ -6205,42 +6014,6 @@ msgstr "SQL result"
msgid "Generated by"
msgstr "Generated by"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-"The following structures have either been created or altered. Here you can:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "View a structure`s contents by clicking on its name"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Edit its structure by following the \"Structure\" link"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Go to database"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "settings"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Go to table"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Go to view"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6307,6 +6080,42 @@ msgstr "Column names"
msgid "This plugin does not support compressed imports!"
msgstr "This plug-in does not support compressed imports!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+"The following structures have either been created or altered. Here you can:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "View a structure`s contents by clicking on its name"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Edit its structure by following the \"Structure\" link"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Go to database"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "settings"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Go to table"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Go to view"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr "Import percentages as proper decimals (ex. 12.00% to .12)"
@@ -6331,6 +6140,42 @@ msgstr ""
"The XML file specified was either malformed or incomplete. Please correct "
"the issue and try again."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "No index defined!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unique"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Packed"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinality"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "The primary key has been dropped"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Index %s has been dropped"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6341,6 +6186,27 @@ msgstr "None"
msgid "Convert to Kana"
msgstr "Convert to Kana"
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d row affected."
+msgstr[1] "%1$d rows affected."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d row deleted."
+msgstr[1] "%1$d rows deleted."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d row inserted."
+msgstr[1] "%1$d rows inserted."
+
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "From"
@@ -6579,6 +6445,18 @@ msgstr "Reload navigation frame"
msgid "This format has no options"
msgstr "This format has no options"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Could not save recent table"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Recent tables"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "There are no recent tables"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "not OK"
@@ -6960,61 +6838,6 @@ msgstr "Difference"
msgid "Target database"
msgstr "Target database"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Run SQL query/queries on server %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Run SQL query/queries on database %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Clear"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Columns"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Bookmark this SQL query"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Let every user access this bookmark"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Replace existing bookmark of same name"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Do not overwrite this query from outside the window"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Delimiter"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Show this query here again "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "View only"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Location of the text file"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web server upload directory"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7077,6 +6900,61 @@ msgstr "Invalid Identifer"
msgid "Unknown Punctuation String"
msgstr "Unknown Punctuation String"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Run SQL query/queries on server %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Run SQL query/queries on database %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Clear"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Columns"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Bookmark this SQL query"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Let every user access this bookmark"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Replace existing bookmark of same name"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Do not overwrite this query from outside the window"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Delimiter"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Show this query here again "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "View only"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Location of the text file"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web server upload directory"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7086,6 +6964,49 @@ msgstr ""
"The SQL validator could not be initialised. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"There is no detailed status information available for this storage engine."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s is available on this MySQL server."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s has been disabled for this MySQL server."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "This MySQL server does not support the %s storage engine."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Invalid database"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Invalid table name"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Error renaming table %1$s to %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Table %s has been renamed to %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Could not save table UI preferences"
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Table seems to be empty!"
@@ -7204,6 +7125,38 @@ msgstr "PARTITION definition"
msgid "+ Add a new value"
msgstr "+ Add a new value"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "No valid image path for theme %s found!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "No preview available."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "take it"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Default theme %s not found!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Theme %s not found!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Theme path not found for theme %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "Theme"
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8240,13 +8193,13 @@ msgstr "Drop the databases that have the same names as the users."
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."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
@@ -8616,10 +8569,8 @@ msgid "All status variables"
msgstr "All status variables"
#: server_status.php:413 server_status.php:439
-#, fuzzy
-#| msgid "Refresh rate"
msgid "Refresh rate:"
-msgstr "Refresh rate"
+msgstr "Refresh rate:"
#: server_status.php:462
msgid "Containing the word:"
@@ -9504,7 +9455,7 @@ msgstr ""
#: server_variables.php:58
msgid "Setting variable failed"
-msgstr ""
+msgstr "Setting variable failed"
#: server_variables.php:77
msgid "Server variables and settings"
@@ -10000,10 +9951,8 @@ msgid "View dump (schema) of table"
msgstr "View dump (schema) of table"
#: tbl_gis_visualization.php:111
-#, fuzzy
-#| msgid "Display servers selection"
msgid "Display GIS Visualization"
-msgstr "Display servers selection"
+msgstr "Display GIS Visualisation"
#: tbl_gis_visualization.php:157
msgid "Width"
@@ -10014,42 +9963,32 @@ msgid "Height"
msgstr "Height"
#: tbl_gis_visualization.php:165
-#, fuzzy
-#| msgid "Textarea columns"
msgid "Label column"
-msgstr "Textarea columns"
+msgstr "Label column"
#: tbl_gis_visualization.php:167
-#, fuzzy
-#| msgid "- none -"
msgid "-- None --"
-msgstr "- none -"
+msgstr "-- None --"
#: tbl_gis_visualization.php:180
-#, fuzzy
-#| msgid "Total count"
msgid "Spatial column"
-msgstr "Total count"
+msgstr "Spatial column"
#: tbl_gis_visualization.php:201
msgid "Use OpenStreetMaps as Base Layer"
-msgstr ""
+msgstr "Use OpenStreetMaps as Base Layer"
#: tbl_gis_visualization.php:204
msgid "Redraw"
msgstr "Redraw"
#: tbl_gis_visualization.php:206
-#, fuzzy
-#| msgid "Save as file"
msgid "Save to file"
-msgstr "Save as file"
+msgstr "Save to file"
#: tbl_gis_visualization.php:207
-#, fuzzy
-#| msgid "Table name"
msgid "File name"
-msgstr "Table name"
+msgstr "File name"
#: tbl_indexes.php:66
msgid "The name of the primary key must be \"PRIMARY\"!"
@@ -10293,7 +10232,7 @@ msgstr "Display order:"
#: tbl_structure.php:158 tbl_structure.php:163 tbl_structure.php:611
msgid "Spatial"
-msgstr ""
+msgstr "Spatial"
#: tbl_structure.php:165 tbl_structure.php:169
msgid "Browse distinct values"
@@ -10312,10 +10251,8 @@ msgid "Add unique index"
msgstr "Add unique index"
#: tbl_structure.php:176 tbl_structure.php:177
-#, fuzzy
-#| msgid "Add index"
msgid "Add SPATIAL index"
-msgstr "Add index"
+msgstr "Add SPATIAL index"
#: tbl_structure.php:178 tbl_structure.php:179
msgid "Add FULLTEXT index"
diff --git a/po/es.po b/po/es.po
index e2c01fc117..9d41fae99c 100644
--- a/po/es.po
+++ b/po/es.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
-"PO-Revision-Date: 2011-06-19 20:37+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
+"PO-Revision-Date: 2011-06-22 22:33+0200\n"
"Last-Translator: Matías Bellone \n"
"Language-Team: spanish \n"
-"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -48,10 +48,10 @@ msgstr "Buscar"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Buscar"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Continuar"
@@ -132,9 +132,9 @@ msgstr "Comentario de la base de datos: "
msgid "Table comments"
msgstr "Comentarios de la tabla"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Comentarios de la tabla"
msgid "Column"
msgstr "Columna"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Columna"
msgid "Type"
msgstr "Tipo"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "Enlaces a"
msgid "Comments"
msgstr "Comentarios"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "Comentarios"
msgid "No"
msgstr "No"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -332,8 +333,8 @@ msgstr "Añadir restricciones"
msgid "Switch to copied database"
msgstr "Seleccionar la base de datos copiada"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -499,8 +500,8 @@ msgstr "Consulta a la base de datos %s:"
msgid "Submit Query"
msgstr "Ejecutar la consulta"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -510,14 +511,13 @@ msgstr "Su consulta se ejecutó con éxito"
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "%d fila afectada por la última sentencia del procedimiento"
+msgstr[1] "%d filas afectadas por la última sentencia del procedimiento"
#: db_routines.php:165
-#, fuzzy, php-format
-#| msgid "Allows executing stored routines."
+#, php-format
msgid "Execution results of routine %s"
-msgstr "Permite ejecutar las rutinas almacenadas."
+msgstr "Resultados de la ejecución de la rutina %s"
#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
@@ -529,7 +529,7 @@ msgstr ""
#: db_routines.php:319
#, php-format
msgid "Query \"%s\" failed"
-msgstr ""
+msgstr "Falló la consulta \"%s\""
#: db_routines.php:191 db_routines.php:291 db_routines.php:296
#: db_routines.php:306 db_routines.php:320 libraries/common.lib.php:609
@@ -537,68 +537,57 @@ msgid "MySQL said: "
msgstr "MySQL ha dicho: "
#: db_routines.php:208 db_routines.php:263 db_routines.php:402
-#, fuzzy
-#| msgid "Error in Processing Request"
msgid "Error in processing request"
-msgstr "Error al Procesar la Petición"
+msgstr "Error al procesar la petición"
#: db_routines.php:209 db_routines.php:264 db_routines.php:403
-#, fuzzy, php-format
-#| msgid "No tables found in database"
+#, php-format
msgid "No routine with name %s found in database %s"
-msgstr "No se han encontrado tablas en la base de datos."
+msgstr "No se encontró rutina con nombre %s en la base de datos %s"
#: db_routines.php:230 db_routines.php:234
msgid "Execute routine"
-msgstr ""
+msgstr "Ejecutar rutina"
#: db_routines.php:254 db_routines.php:258
-#, fuzzy, php-format
-#| msgid "Export defaults"
+#, php-format
msgid "Export of routine %s"
-msgstr "Exportar las opciones predeterminadas"
+msgstr "Exportar la rutina %s"
#: db_routines.php:283 libraries/db_routines.lib.php:960
-#, fuzzy, php-format
-#| msgid "Invalid server index: %s"
+#, php-format
msgid "Invalid routine type: \"%s\""
-msgstr "Índice de servidor inválido: %s"
+msgstr "Tipo de rutina inválido: \"%s\""
#: db_routines.php:304
msgid "Sorry, we failed to restore the dropped routine."
-msgstr ""
+msgstr "Pedimos disculpas por no haber podido recuperar la rutina eliminada."
#: db_routines.php:305
msgid "The backed up query was:"
-msgstr ""
+msgstr "La consulta respaldada era:"
#: db_routines.php:309
-#, fuzzy, php-format
-#| msgid "Column %s has been dropped"
+#, php-format
msgid "Routine %1$s has been modified."
-msgstr "Se ha eliminado la columna %s"
+msgstr "Se modificó la rutina %1$s."
#: db_routines.php:322
-#, fuzzy, php-format
-#| msgid "Table %1$s has been created."
+#, php-format
msgid "Routine %1$s has been created."
-msgstr "La Tabla %1$s se creó."
+msgstr "Se creó la rutina %1$s."
#: db_routines.php:330
msgid "One or more errors have occured while processing your request:"
-msgstr ""
+msgstr "Ocurrieron uno o más errores al procesar el pedido:"
#: db_routines.php:374
-#, fuzzy
-#| msgid "Create relation"
msgid "Create routine"
-msgstr "Crear relación"
+msgstr "Crear rutina"
#: db_routines.php:378
-#, fuzzy
-#| msgid "Edit mode"
msgid "Edit routine"
-msgstr "Modalidad de edición"
+msgstr "Editar rutina"
#: db_routines.php:429
msgid ""
@@ -606,10 +595,14 @@ msgid ""
"handling multi queries. The execution of some stored routines may fail!"
"b> Please use the improved 'mysqli' extension to avoid any problems."
msgstr ""
+"Está utilizando la extensión de PHP obsoleta 'mysql', que no es capaz de "
+"manejar consultas múltiples. La ejecución de algunas rutinas guardadas "
+"puede fallar. Por favor utilice la extensión mejorada 'mysqli' para "
+"evitar problemas."
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Acceso denegado"
@@ -679,10 +672,8 @@ msgid "Search in database"
msgstr "Buscar en la base de datos"
#: db_search.php:300
-#, fuzzy
-#| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgid "Words or values to search for (wildcard: \"%\"):"
-msgstr "Palabra(s) o valor(es) a buscar (comodín: \"%\"):"
+msgstr "Palabras o valores a buscar (comodín: \"%\"):"
#: db_search.php:305
msgid "Find:"
@@ -693,10 +684,8 @@ msgid "Words are separated by a space character (\" \")."
msgstr "Las palabras están separadas por un espacio (\" \")."
#: db_search.php:323
-#, fuzzy
-#| msgid "Inside table(s):"
msgid "Inside tables:"
-msgstr "En la(s) tabla(s):"
+msgstr "Dentro de las tablas:"
#: db_search.php:353
msgid "Inside column:"
@@ -732,11 +721,11 @@ msgstr "El seguimiento no está activo."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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. Por favor refiérase a la "
-"%sdocumentation%s."
+"Esta vista tiene al menos este número de filas. Por favor refiérase a la %"
+"sdocumentation%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -753,7 +742,7 @@ msgstr "Replicación"
msgid "Sum"
msgstr "Número de filas"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
@@ -803,8 +792,8 @@ msgstr "Vista de impresión"
msgid "Empty"
msgstr "Vaciar"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -877,9 +866,9 @@ msgstr "Actualizado"
msgid "Status"
msgstr "Estado actual"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -973,8 +962,8 @@ msgstr "El volcado ha sido guardado al archivo %s."
#: import.php:58
#, 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."
msgstr ""
"Usted probablemente intentó cargar un archivo demasiado grande. Por favor, "
"refiérase a %sla documentation%s para hallar modos de superar esta "
@@ -1158,11 +1147,11 @@ msgstr "Eliminando los usuarios seleccionados"
msgid "Close"
msgstr "Cerrar"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Editar"
@@ -1326,12 +1315,11 @@ msgstr "Borrando"
#: js/messages.php:122
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
+"¡La definición de una función almacenada debe contener una sentencia RETURN!"
#: js/messages.php:123
-#, fuzzy
-#| msgid "Missing value in the form!"
msgid "Value too long in the form!"
-msgstr "¡Falta un valor en el formulario!"
+msgstr "¡Valor demasiado grande en el formulario!"
#: js/messages.php:126
msgid ""
@@ -1696,227 +1684,12 @@ msgstr "Minuto"
msgid "Second"
msgstr "Segundo"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Tamaño de fuente"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"El archivo que intentó subir excede la directiva upload_max_filesize en php."
-"ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"El archivo que intentó subir excede la directiva MAX_FILE_SIZE especificada "
-"en el formulario HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "El archivo que intentó subir no alcanzó el 100%."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Falta una carpeta temporal."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "No fue posible grabar el archivo a disco."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "La subida del archivo fue detenida por extensión."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Error desconocido al subir el archivo."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Se detectó un error al mover el archivo subido, ver [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "¡No se ha definido ningún índice!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Índices"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Único"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Empaquetado"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinalidad"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Comentario"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "La clave primaria ha sido eliminada"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "El índice %s ha sido eliminado"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Los índices %1$s y %2$s parecen ser iguales y posiblemente se puede eliminar "
-"uno."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Bases de datos"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Error"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d fila afectada."
-msgstr[1] "%1$d filas afectadas."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d fila eliminada."
-msgstr[1] "%1$d filas eliminadas."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d fila insertada."
-msgstr[1] "%1$d filas insertadas."
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "No se pudo guardar la tabla reciente"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Tablas recientes"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "No existen tablas recientes"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"No existe información detallada acerca de las condiciones en que se "
-"encuentra este motor de almacenamiento."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s está disponible en este servidor MySQL."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s ha sido deshabilitado para este motor de almacenamiento."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-"Este servidor MySQL no es compatible con el motor de almacenamiento %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "La base de datos no es válida"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "El nombre de la tabla no es válido"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Error al cambiar el nombre de la tabla %1$s a %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabla %s ahora se llama %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "No se pudieron guardar las preferencias de interfaz"
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "¡No se halló la ruta de imágenes para el tema %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "No existe una previsualización disponible."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "tómelo"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "¡No se halló el tema predeterminado %s!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "¡No se halló el tema %s!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "¡No se halló la ruta del tema %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr "Tema"
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "No se estableció la conexión: los parámetros están incorrectos."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Bienvenido a %s"
@@ -1924,8 +1697,8 @@ msgstr "Bienvenido a %s"
#: libraries/auth/config.auth.lib.php:106
#, 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."
@@ -1942,45 +1715,45 @@ msgstr ""
"config.inc.php y asegurarse que corresponden con la información provista por "
"el administrador del servidor MySQL."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Iniciar sesión"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Documentación de phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
"Puede escribir el nombre del proveedor de servicios/dirección IP y el "
"puerto, separado por un espacio."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Servidor:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Usuario:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Contraseña:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Elección del servidor"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Las cookies deben estar activadas."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -1988,7 +1761,7 @@ msgstr ""
"El inicio de sesión sin contraseña está prohibido por la configuración (ver "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -1996,8 +1769,8 @@ msgstr ""
"No ha habido actividad desde hace %s o más segundos, por favor reingrese al "
"sitio"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "El servidor MySQL no autorizó su ingreso"
@@ -2037,6 +1810,14 @@ msgstr "error PBMS"
msgid "PBMS connection failed:"
msgstr "Falló la conexión PBMS:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Error"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "Fallo al obtener la información del BLOB PBMS:"
@@ -2089,6 +1870,11 @@ msgstr "Tablas"
msgid "Data"
msgstr "Datos"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Índices"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2117,15 +1903,21 @@ msgstr "Comprobar los privilegios"
#: libraries/common.inc.php:587
#, fuzzy
-#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
-msgstr "No se pudo guardar la configuración"
+#| msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
+msgstr "No se pudo leer el archivo de configuración"
#: libraries/common.inc.php:588
+#, fuzzy
+#| msgid ""
+#| "This usually means there is a syntax error in it, please check any errors "
+#| "shown bellow."
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
+"Esto generalmente significa que tiene un error de sintáxis, por favor revisa "
+"los errores que se muestran a continuación."
#: libraries/common.inc.php:595
#, php-format
@@ -2371,84 +2163,11 @@ msgstr "No hay archivos para subir"
#: libraries/common.lib.php:2964 libraries/common.lib.php:2965
msgid "Execute"
-msgstr ""
+msgstr "Ejecutar"
-# Used for
-# http://www.phpmyadmin.net/documentation/Documentation.html#cfg_NavigationBarIconic
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Ambos"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Ninguno"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Izquierda"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Derecha"
-
-# Used for
-# http://www.phpmyadmin.net/documentation/Documentation.html#cfg_InitialSlidersState
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Desplegados"
-
-# http://www.phpmyadmin.net/documentation/Documentation.html#cfg_InitialSlidersState
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Ocultos"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "estructura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "datos"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "estructura y datos"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Rápido - mostrar solo el mínimo de opciones de configuración"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Personalizado - mostrar todas las opciones de configuración posibles"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Personalizado - como el anterior, pero sin elegir rápido/personalizado"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "INSERTs completos"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "INSERTs extensos"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "todo lo anterior"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "ninguno de los anteriores"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Tamaño de fuente"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3115,6 +2834,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Bases de datos"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Opciones para visualizar las bases de datos"
@@ -4774,6 +4499,83 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "La dirección IP es incorrecta: %s"
+# Used for
+# http://www.phpmyadmin.net/documentation/Documentation.html#cfg_NavigationBarIconic
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Ambos"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Ninguno"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Izquierda"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Derecha"
+
+# Used for
+# http://www.phpmyadmin.net/documentation/Documentation.html#cfg_InitialSlidersState
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Desplegados"
+
+# http://www.phpmyadmin.net/documentation/Documentation.html#cfg_InitialSlidersState
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Ocultos"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "estructura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "datos"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "estructura y datos"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Rápido - mostrar solo el mínimo de opciones de configuración"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Personalizado - mostrar todas las opciones de configuración posibles"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Personalizado - como el anterior, pero sin elegir rápido/personalizado"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "INSERTs completos"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "INSERTs extensos"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "todo lo anterior"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "ninguno de los anteriores"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4786,22 +4588,19 @@ msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "No se encontró la extensión %s. Por favor revisa la configuración PHP."
#: libraries/db_events.inc.php:30
-#, fuzzy, php-format
-#| msgid "Export contents"
+#, php-format
msgid "Export of event %s"
-msgstr "Exportar contenidos"
+msgstr "Exportar evento %s"
#: libraries/db_events.inc.php:34
-#, fuzzy, php-format
-#| msgid "Export contents"
+#, php-format
msgid "Export of event \"%s\""
-msgstr "Exportar contenidos"
+msgstr "Exportar evento \"%s\""
#: libraries/db_events.inc.php:40
-#, fuzzy, php-format
-#| msgid "No tables found in database"
+#, php-format
msgid "No event with name %s found in database %s"
-msgstr "No se han encontrado tablas en la base de datos."
+msgstr "No se encontró evento con nombre %s en la base de datos %s"
#: libraries/db_events.inc.php:56 libraries/db_links.inc.php:101
#: libraries/export/sql.php:609
@@ -4809,10 +4608,8 @@ msgid "Events"
msgstr "Eventos"
#: libraries/db_events.inc.php:58 libraries/db_events.inc.php:60
-#, fuzzy
-#| msgid "There are no files to upload"
msgid "There are no events to display."
-msgstr "No hay archivos para subir"
+msgstr "No existen eventos para mostrar."
#: libraries/db_events.inc.php:67 libraries/db_routines.lib.php:690
#: libraries/db_routines.lib.php:846 libraries/db_routines.lib.php:1214
@@ -4824,25 +4621,43 @@ msgstr "Nombre"
#: libraries/db_events.inc.php:129
msgid "The event scheduler is enabled"
-msgstr ""
+msgstr "El planificador de eventos está activado"
#: libraries/db_events.inc.php:129
msgid "The event scheduler is disabled"
-msgstr ""
+msgstr "El planificador de eventos está desactivado"
#: libraries/db_events.inc.php:131
msgid "Turn it on"
-msgstr ""
+msgstr "Activarlo"
#: libraries/db_events.inc.php:131
msgid "Turn it off"
-msgstr ""
+msgstr "Desactivarlo"
#: libraries/db_events.inc.php:141
-#, fuzzy
-#| msgid "Add a new server"
msgid "Add a new Event"
-msgstr "Añadir un nuevo servidor"
+msgstr "Añadir un nuevo Evento"
+
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"La conexión para controluser, como está definida en su configuración, "
+"fracasó."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "El servidor no está respondiendo"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+"(o el socket del servidor MySQL local no está configurado correctamente)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Detalles..."
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
@@ -4878,36 +4693,29 @@ msgid "Triggers"
msgstr "Disparadores"
#: libraries/db_routines.lib.php:659
-#, fuzzy
-#| msgid "Details..."
msgid "Details"
-msgstr "Detalles..."
+msgstr "Detalles"
#: libraries/db_routines.lib.php:662
-#, fuzzy
-#| msgid "Routines"
msgid "Routine name"
-msgstr "Rutinas"
+msgstr "Nombre de rutina"
#: libraries/db_routines.lib.php:679
-#, fuzzy, php-format
-#| msgid "Change"
+#, php-format
msgid "Change to %s"
-msgstr "Cambiar"
+msgstr "Cambiar a %s"
#: libraries/db_routines.lib.php:684
msgid "Parameters"
-msgstr ""
+msgstr "Parámetros"
#: libraries/db_routines.lib.php:689
-#, fuzzy
-#| msgid "Direct links"
msgid "Direction"
-msgstr "Enlaces directos"
+msgstr "Dirección"
#: libraries/db_routines.lib.php:692 libraries/tbl_properties.inc.php:105
msgid "Length/Values"
-msgstr "Longitud/Valores*"
+msgstr "Longitud/Valores"
#: libraries/db_routines.lib.php:693 libraries/display_tbl.lib.php:585
#: libraries/export/codegen.php:41 libraries/export/csv.php:34
@@ -4918,9 +4726,9 @@ msgstr "Longitud/Valores*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4928,62 +4736,53 @@ msgid "Options"
msgstr "Opciones"
#: libraries/db_routines.lib.php:707
-#, fuzzy
-#| msgid "Add prefix"
msgid "Add parameter"
-msgstr "Agregar prefijo"
+msgstr "Agregar parámetro"
#: libraries/db_routines.lib.php:710
-#, fuzzy
-#| msgid "Remove database"
msgid "Remove last parameter"
-msgstr "Eliminar base de datos"
+msgstr "Eliminar último parámetro"
#: libraries/db_routines.lib.php:715 libraries/db_routines.lib.php:1217
msgid "Return type"
-msgstr "Muestre el tipo"
+msgstr "Retornar el tipo"
#: libraries/db_routines.lib.php:721
-#, fuzzy
-#| msgid "Length/Values"
msgid "Return length/values"
-msgstr "Longitud/Valores*"
+msgstr "Retornar longitud/valores"
#: libraries/db_routines.lib.php:726
-#, fuzzy
-#| msgid "Table options"
msgid "Return options"
-msgstr "Opciones de la tabla"
+msgstr "Retornar opciones"
#: libraries/db_routines.lib.php:745
-#, fuzzy
-#| msgid "Description"
msgid "Definition"
-msgstr "Descripción"
+msgstr "Definición"
#: libraries/db_routines.lib.php:749
msgid "Is deterministic"
-msgstr ""
+msgstr "Es determinístico"
#: libraries/db_routines.lib.php:753
msgid "Definer"
-msgstr ""
+msgstr "Definidor"
#: libraries/db_routines.lib.php:758
-#, fuzzy
-#| msgid "Security"
msgid "Security type"
-msgstr "Seguridad"
+msgstr "Tipo de seguridad"
#: libraries/db_routines.lib.php:765
msgid "SQL data access"
-msgstr ""
+msgstr "Acceso de datos SQL"
+
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Comentario"
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
-#, fuzzy
-#| msgid "Routines"
msgid "Routine parameters"
-msgstr "Rutinas"
+msgstr "Parámetros de rutina"
#: libraries/db_routines.lib.php:849 tbl_change.php:284 tbl_change.php:322
msgid "Function"
@@ -4998,44 +4797,40 @@ msgstr "Valor"
#: libraries/db_routines.lib.php:965
msgid "You must provide a routine name"
-msgstr ""
+msgstr "Debe proveer un nombre de rutina"
#: libraries/db_routines.lib.php:984
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
-msgstr ""
+msgstr "Dirección \"%s\" inválida provista para el parámetro."
#: libraries/db_routines.lib.php:995 libraries/db_routines.lib.php:1036
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
+"Debe proveer longitud/valores para los parámetros de tipo ENUM, SET, VARCHAR "
+"y VARBINARY."
#: libraries/db_routines.lib.php:1020
msgid "You must provide a name and a type for each routine parameter."
-msgstr ""
+msgstr "Debe proveer en nombre y tipo para cada parámetro de rutina."
#: libraries/db_routines.lib.php:1077
msgid "You must provide a routine definition."
-msgstr ""
+msgstr "Debe proveer una definición de rutina."
#: libraries/db_routines.lib.php:1209
-#, fuzzy
-#| msgid "There are no files to upload"
msgid "There are no routines to display."
-msgstr "No hay archivos para subir"
+msgstr "No hay rutinas para mostrar."
#: libraries/db_routines.lib.php:1253
-#, fuzzy
-#| msgid "Add index"
msgid "Add routine"
-msgstr "Agregar índice"
+msgstr "Agregar rutina"
#: libraries/db_routines.lib.php:1256
-#, fuzzy
-#| msgid "You don't have sufficient privileges to be here right now!"
msgid "You do not have the necessary privileges to create a new routine"
-msgstr "¡Usted no tiene suficientes privilegios para estar aquí ahora!"
+msgstr "No posee los privilegios necesarios para crear una nueva rutina"
#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2121
msgid ""
@@ -5045,26 +4840,6 @@ msgstr ""
"Podría ser aproximado. Ver [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"La conexión para controluser, como está definida en su configuración, "
-"fracasó."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "El servidor no está respondiendo"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-"(o el socket del servidor MySQL local no está configurado correctamente)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Detalles..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5204,8 +4979,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 "
@@ -5441,15 +5216,15 @@ msgstr "Transformación del navegador"
#: libraries/display_tbl.lib.php:642
msgid "Geometry"
-msgstr ""
+msgstr "Geometría"
#: libraries/display_tbl.lib.php:643
msgid "Well Known Text"
-msgstr ""
+msgstr "Texto muy conocido"
#: libraries/display_tbl.lib.php:644
msgid "Well Known Binary"
-msgstr ""
+msgstr "Binario muy conocido"
#: libraries/display_tbl.lib.php:1288
msgid "Copy"
@@ -5495,7 +5270,7 @@ msgstr "Mostrar gráfico"
#: libraries/display_tbl.lib.php:2548
msgid "Visualize GIS data"
-msgstr ""
+msgstr "Visualizar datos GIS"
#: libraries/display_tbl.lib.php:2568
msgid "Create view"
@@ -5506,27 +5281,23 @@ msgid "Link not found"
msgstr "No se encontró el enlace"
#: libraries/display_triggers.inc.php:35
-#, fuzzy, php-format
-#| msgid "Export contents"
+#, php-format
msgid "Export of trigger %s"
-msgstr "Exportar contenidos"
+msgstr "Exportar disparador %s"
#: libraries/display_triggers.inc.php:39
#, php-format
msgid "Export of trigger \"%s\""
-msgstr ""
+msgstr "Exportar disparador \"%s\""
#: libraries/display_triggers.inc.php:47
-#, fuzzy, php-format
-#| msgid "No valid image path for theme %s found!"
+#, php-format
msgid "No trigger with name %s found"
-msgstr "¡No se halló la ruta de imágenes para el tema %s!"
+msgstr "No se encontró disparador con nombre %s"
#: libraries/display_triggers.inc.php:64 libraries/display_triggers.inc.php:66
-#, fuzzy
-#| msgid "There are no files to upload"
msgid "There are no triggers to display."
-msgstr "No hay archivos para subir"
+msgstr "No hay disparadores para mostrar."
#: libraries/display_triggers.inc.php:77 server_status.php:800 sql.php:936
msgid "Time"
@@ -5537,10 +5308,8 @@ msgid "Event"
msgstr "Evento"
#: libraries/display_triggers.inc.php:120
-#, fuzzy
-#| msgid "Add a new server"
msgid "Add a new Trigger"
-msgstr "Añadir un nuevo servidor"
+msgstr "Agregar un nuevo disparador"
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
@@ -6002,8 +5771,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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."
@@ -6312,16 +6081,56 @@ msgstr "Vistas"
msgid "Export contents"
msgstr "Exportar contenidos"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"El archivo que intentó subir excede la directiva upload_max_filesize en php."
+"ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"El archivo que intentó subir excede la directiva MAX_FILE_SIZE especificada "
+"en el formulario HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "El archivo que intentó subir no alcanzó el 100%."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Falta una carpeta temporal."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "No fue posible grabar el archivo a disco."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "La subida del archivo fue detenida por extensión."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Error desconocido al subir el archivo."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Se detectó un error al mover el archivo subido, ver [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
msgstr "Abrir nueva ventana de phpMyAdmin"
#: libraries/gis_visualization.lib.php:129
-#, fuzzy
-#| msgid "No data found for the chart."
msgid "No data found for GIS visualization."
-msgstr "No se encontraron datos para la gráfica."
+msgstr "No se encontraron datos para la visualización GIS."
#: libraries/header_printview.inc.php:49 libraries/header_printview.inc.php:54
msgid "SQL result"
@@ -6331,44 +6140,6 @@ msgstr "Resultado SQL"
msgid "Generated by"
msgstr "Generado por"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Las siguientes estructureas fueron creadas o alteradas. Puedes:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Ver los contenidos de una estructura pulsando en su nombre"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Cambie cualquiera de sus opciones pulsando el enlace \"Opciones\" "
-"correspondiente"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Edite su estructura siguiendo el enlace \"Estructura\""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Ir a la base de datos"
-
-# This needs a bug opened due to way of building string not translation-
-# friendly
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "configuración"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Ir a la tabla"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Ir a la vista"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6437,6 +6208,44 @@ msgstr "Nombre de las columnas"
msgid "This plugin does not support compressed imports!"
msgstr "¡Este plugin no tiene soporte para importaciones comprimidas!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Las siguientes estructureas fueron creadas o alteradas. Puedes:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Ver los contenidos de una estructura pulsando en su nombre"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Cambie cualquiera de sus opciones pulsando el enlace \"Opciones\" "
+"correspondiente"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Edite su estructura siguiendo el enlace \"Estructura\""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Ir a la base de datos"
+
+# This needs a bug opened due to way of building string not translation-
+# friendly
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "configuración"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Ir a la tabla"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Ir a la vista"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6465,6 +6274,42 @@ msgstr ""
"El archivo XML especificado estaba incompleto o mal formado. Por favor "
"corrija el problema e intente nuevamente."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "¡No se ha definido ningún índice!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Único"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Empaquetado"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinalidad"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "La clave primaria ha sido eliminada"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "El índice %s ha sido eliminado"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Los índices %1$s y %2$s parecen ser iguales y posiblemente se puede eliminar "
+"uno."
+
# male gender due to referring to encoding modes
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
@@ -6476,6 +6321,27 @@ msgstr "Ninguno"
msgid "Convert to Kana"
msgstr "Convertir a Kana"
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d fila afectada."
+msgstr[1] "%1$d filas afectadas."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d fila eliminada."
+msgstr[1] "%1$d filas eliminadas."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d fila insertada."
+msgstr[1] "%1$d filas insertadas."
+
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "De"
@@ -6714,6 +6580,18 @@ msgstr "Recargar el marco de navegación"
msgid "This format has no options"
msgstr "Este formato no tiene opciones"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "No se pudo guardar la tabla reciente"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Tablas recientes"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "No existen tablas recientes"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "no recibió el OK"
@@ -7098,61 +6976,6 @@ msgstr "Diferencia"
msgid "Target database"
msgstr "Base de datos objetivo"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Ejecute la o las consultas SQL en el servidor %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Ejecutar la(s) consulta(s) SQL en la base de datos %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Limpiar"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Columnas"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Guardar esta consulta en favoritos"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Permitir que todo usuario pueda acceder a este favorito"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Reemplazar el favorito existente que tenga el mismo nombre"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "No sobreescribir esta consulta desde fuera de la ventana"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Delimitador"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Mostrar esta consulta otra vez "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Solamente ver"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Localización del archivo de texto"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "directorio en el servidor web para subir los archivos"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7218,6 +7041,61 @@ msgstr "El identificador no es válido"
msgid "Unknown Punctuation String"
msgstr "Signo de puntuación desconocido"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Ejecute la o las consultas SQL en el servidor %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Ejecutar la(s) consulta(s) SQL en la base de datos %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Limpiar"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Columnas"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Guardar esta consulta en favoritos"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Permitir que todo usuario pueda acceder a este favorito"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Reemplazar el favorito existente que tenga el mismo nombre"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "No sobreescribir esta consulta desde fuera de la ventana"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Delimitador"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Mostrar esta consulta otra vez "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Solamente ver"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Localización del archivo de texto"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "directorio en el servidor web para subir los archivos"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7227,6 +7105,51 @@ msgstr ""
"El validador de SQL no pudo inicializarse. Por favor revise si ha instalado "
"las extensiones php necesarias, como están descritas en la %sdocumentación%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"No existe información detallada acerca de las condiciones en que se "
+"encuentra este motor de almacenamiento."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s está disponible en este servidor MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s ha sido deshabilitado para este motor de almacenamiento."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+"Este servidor MySQL no es compatible con el motor de almacenamiento %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "La base de datos no es válida"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "El nombre de la tabla no es válido"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Error al cambiar el nombre de la tabla %1$s a %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabla %s ahora se llama %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "No se pudieron guardar las preferencias de interfaz"
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "La tabla, ¡parece estar vacía!"
@@ -7348,6 +7271,38 @@ msgstr "definición de la PARTICIÓN"
msgid "+ Add a new value"
msgstr "+ Agregar un nuevo valor"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "¡No se halló la ruta de imágenes para el tema %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "No existe una previsualización disponible."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "tómelo"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "¡No se halló el tema predeterminado %s!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "¡No se halló el tema %s!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "¡No se halló la ruta del tema %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "Tema"
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7666,8 +7621,8 @@ msgid ""
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"El almacenamiento de configuración phpMyAdmin no está completamente "
-"configurado, algunas funcionalidades extendidas fueron deshabilitadas. "
-"%sPulsa aquí para averiguar por qué%s."
+"configurado, algunas funcionalidades extendidas fueron deshabilitadas. %"
+"sPulsa aquí para averiguar por qué%s."
#: main.php:314
msgid ""
@@ -8417,8 +8372,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: phpMyAdmin obtiene los privilegios de los usuarios 'directamente de "
"las tablas de privilegios MySQL'. El contenido de estas tablas puede diferir "
@@ -8806,10 +8761,8 @@ msgid "All status variables"
msgstr "Todas las variables de estado"
#: server_status.php:413 server_status.php:439
-#, fuzzy
-#| msgid "Refresh rate"
msgid "Refresh rate:"
-msgstr "Velocidad de actualización"
+msgstr "Velocidad de actualización:"
#: server_status.php:462
msgid "Containing the word:"
@@ -9733,7 +9686,7 @@ msgstr ""
#: server_variables.php:58
msgid "Setting variable failed"
-msgstr ""
+msgstr "Falló la definición de la variable"
#: server_variables.php:77
msgid "Server variables and settings"
@@ -10242,10 +10195,8 @@ msgid "View dump (schema) of table"
msgstr "Mostrar volcado (esquema) de la tabla"
#: tbl_gis_visualization.php:111
-#, fuzzy
-#| msgid "Display servers selection"
msgid "Display GIS Visualization"
-msgstr "Mostrar la selección de servidores"
+msgstr "Mostrar visualización GIS"
#: tbl_gis_visualization.php:157
msgid "Width"
@@ -10256,42 +10207,32 @@ msgid "Height"
msgstr "Altura"
#: tbl_gis_visualization.php:165
-#, fuzzy
-#| msgid "Textarea columns"
msgid "Label column"
-msgstr "Columnas para las áreas de texto"
+msgstr "Etiqueta de columna"
#: tbl_gis_visualization.php:167
-#, fuzzy
-#| msgid "- none -"
msgid "-- None --"
-msgstr "- ninguno -"
+msgstr "-- ninguno --"
#: tbl_gis_visualization.php:180
-#, fuzzy
-#| msgid "Total count"
msgid "Spatial column"
-msgstr "Cantidad total"
+msgstr "Columna espacial"
#: tbl_gis_visualization.php:201
msgid "Use OpenStreetMaps as Base Layer"
-msgstr ""
+msgstr "Utilizar OpenStreetMaps como capa base"
#: tbl_gis_visualization.php:204
msgid "Redraw"
msgstr "Redibujar"
#: tbl_gis_visualization.php:206
-#, fuzzy
-#| msgid "Save as file"
msgid "Save to file"
-msgstr "Guardar como archivo"
+msgstr "Guardar a un archivo"
#: tbl_gis_visualization.php:207
-#, fuzzy
-#| msgid "Table name"
msgid "File name"
-msgstr "Nombre de la tabla"
+msgstr "Nombre del archivo"
#: tbl_indexes.php:66
msgid "The name of the primary key must be \"PRIMARY\"!"
@@ -10538,7 +10479,7 @@ msgstr "Mostrar en este orden:"
#: tbl_structure.php:158 tbl_structure.php:163 tbl_structure.php:611
msgid "Spatial"
-msgstr ""
+msgstr "Espacial"
#: tbl_structure.php:165 tbl_structure.php:169
msgid "Browse distinct values"
@@ -10557,10 +10498,8 @@ msgid "Add unique index"
msgstr "Agregar índice único"
#: tbl_structure.php:176 tbl_structure.php:177
-#, fuzzy
-#| msgid "Add index"
msgid "Add SPATIAL index"
-msgstr "Agregar índice"
+msgstr "Agregar índice espacial («SPATIAL»)"
#: tbl_structure.php:178 tbl_structure.php:179
msgid "Add FULLTEXT index"
diff --git a/po/et.po b/po/et.po
index 96ac0baea0..b95b7ce4be 100644
--- a/po/et.po
+++ b/po/et.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -47,10 +47,10 @@ msgstr "Otsi"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "Otsi"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Mine"
@@ -129,9 +129,9 @@ msgstr "Andmebaasi kommentaar: "
msgid "Table comments"
msgstr "Tabeli kommentaarid"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "Tabeli kommentaarid"
msgid "Column"
msgstr "Väljade nimed"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "Väljade nimed"
msgid "Type"
msgstr "Tüüp"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,12 +197,13 @@ msgstr "Lingib "
msgid "Comments"
msgstr "Kommentaarid"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -213,17 +214,17 @@ msgstr "Kommentaarid"
msgid "No"
msgstr "Ei"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -334,8 +335,8 @@ msgstr "Lisa piirangud"
msgid "Switch to copied database"
msgstr "Mine kopeeritud andmebaasile"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -509,8 +510,8 @@ msgstr "SQL-päring andmebaasist %s:"
msgid "Submit Query"
msgstr "Lae päring"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -614,7 +615,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Ligipääs keelatud"
@@ -742,8 +743,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -761,7 +762,7 @@ msgstr "Tiraeerimine"
msgid "Sum"
msgstr "Summa"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s on vaikimisi varundusmootor sellele MySQL serverile."
@@ -810,8 +811,8 @@ msgstr "Trükivaade"
msgid "Empty"
msgstr "Tühjenda"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -892,9 +893,9 @@ msgstr ""
msgid "Status"
msgstr "Staatus"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -993,8 +994,8 @@ msgstr "Väljavõte salvestati faili %s."
#: import.php:58
#, 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."
msgstr ""
"Te kindlasti proovisite laadida liiga suurt faili. Palun uuri "
"dokumentatsiooni %sdocumentation%s selle limiidi seadmiseks."
@@ -1186,11 +1187,11 @@ msgstr "Eemalda valitud kasutajad"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Muuda"
@@ -1816,224 +1817,12 @@ msgstr "kasutusel"
msgid "Second"
msgstr "sekundis"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Fondi suurus"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-#, fuzzy
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Võib olla umbkaudne. Vaadake FAQ 3.11"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Indeksit pole defineeritud!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeksid"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unikaalne"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kasulikkus"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Kommentaarid"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primaarne võti kustutatud"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeks %s kustutatud"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Andmebaasid"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Viga"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Ridu pole valitud"
-msgstr[1] "Ridu pole valitud"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Ridu pole valitud"
-msgstr[1] "Ridu pole valitud"
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "Pole võimalik laadida vaikimisi seadete faili: \"%1$s\""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Pole tabeleid"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-msgid "There are no recent tables"
-msgstr "Kontrolli tabelit"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Detailne seisuinformatsioon antud varundusmootori kohta puudub."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s on saadaval selles MySQL serveris."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s on keelatud selles MySQL serveris."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "See MySQL server ei toeta %s varundusmootorit."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Vigane andmebaas"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Vigane tabeli nimi"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Viga tabeli nime %1$s muutimsel %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabel %s on ümber nimetatud %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Ei leia pildi kataloogi teemale %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Eelvaade pole saadaval."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "võta see"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Ei leia vaikimisi teemat %s!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Ei leia teemat %s!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Ei leia kataloogi teemale %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Ei saa ühendust: vigased seaded."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Tere tulemast %s"
@@ -2041,8 +1830,8 @@ msgstr "Tere tulemast %s"
#: libraries/auth/config.auth.lib.php:106
#, 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 ""
"Arvatav põhjus on te pole veel loonud seadete faili. Soovitavalt võid "
"kasutada %1$ssetup script%2$s et seadistada."
@@ -2059,56 +1848,56 @@ msgstr ""
"php failis ning kontrollima, et need vastaks infole mis te saite oma MySQL "
"serveri administraatori käest."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Sisselogimine"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmini dokumentatsioon"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Server"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Kasutajanimi:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Parool:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Serveri valik"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Küpsised(cookies) peavad alates sellest momendist lubatud olema."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Ebaaktiivne %s sekundit või rohkem, palun sisenege uuesti"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Ei suuda MySQL serverisse logida"
@@ -2149,6 +1938,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "MySQL ühenduse kollatsioon"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Viga"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2201,6 +1998,11 @@ msgstr "Tabelid"
msgid "Data"
msgstr "Andmed"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeksid"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2233,13 +2035,13 @@ msgstr "Kontrollige privileege"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Pole võimalik laadida vaikimisi seadete faili: \"%1$s\""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2489,86 +2291,9 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Sulgemata jutumärk/ülakoma"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Struktuur"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Struktuur ja andmed"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Täispikk INSERT"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Laiendatud lisamised"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Fondi suurus"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3242,6 +2967,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Andmebaasid"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4796,6 +4527,87 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Sulgemata jutumärk/ülakoma"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Struktuur"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Struktuur ja andmed"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Täispikk INSERT"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Laiendatud lisamised"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4863,6 +4675,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "Lisa uus kasutaja"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Server ei vasta"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(või kohaliku MySQL serveri soketid ei ole korrektselt seadistatud)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4935,9 +4764,9 @@ msgstr "Pikkus/Väärtused*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4997,6 +4826,12 @@ msgstr "Päringu tüüp"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Kommentaarid"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -5058,23 +4893,6 @@ msgid ""
"3.11[/a]"
msgstr "Võib olla umbkaudne. Vaadake FAQ 3.11"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Server ei vasta"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(või kohaliku MySQL serveri soketid ei ole korrektselt seadistatud)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5243,8 +5061,8 @@ msgstr ""
#| "happen: %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 ""
"Seda väärtust on tõlgendatud kasutades %1$sstrftime%2$s, sa võid kasutada "
"sama aja(time) formaati. Lisaks tulevad ka järgnevad muudatused: %3$s. "
@@ -6011,8 +5829,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6330,6 +6148,43 @@ msgstr "Vaade"
msgid "Export contents"
msgstr "Ekspordi tüüp"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+#, fuzzy
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Võib olla umbkaudne. Vaadake FAQ 3.11"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6347,42 +6202,6 @@ msgstr "SQL tulemus"
msgid "Generated by"
msgstr "Genereerija "
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Pole andmebaase"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "Pole andmebaase"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6445,6 +6264,42 @@ msgstr "Väljade nimed"
msgid "This plugin does not support compressed imports!"
msgstr "See plugin ei toeta pakitud importe!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Pole andmebaase"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "Pole andmebaase"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6469,6 +6324,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Indeksit pole defineeritud!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unikaalne"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kasulikkus"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primaarne võti kustutatud"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeks %s kustutatud"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6481,6 +6370,29 @@ msgstr "Pole"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Ridu pole valitud"
+msgstr[1] "Ridu pole valitud"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Ridu pole valitud"
+msgstr[1] "Ridu pole valitud"
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6725,6 +6637,22 @@ msgstr ""
msgid "This format has no options"
msgstr "Sellel formaadil pole seadeid"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "Pole võimalik laadida vaikimisi seadete faili: \"%1$s\""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Pole tabeleid"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+msgid "There are no recent tables"
+msgstr "Kontrolli tabelit"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Ei ole korras"
@@ -7116,64 +7044,6 @@ msgstr ""
msgid "Target database"
msgstr "Otsi andmebaasist"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Käivita SQL käsk/käsud Masinas %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Päri SQL päring(uid) andmebaasist %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Kalender"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Väljade nimed"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Lisa see SQL päring järjehoidjasse"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehodjale"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Kirjuta samanimeline järjehoidja üle"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Antud päringut mitte muuta väljaspool akent."
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Eraldaja"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Näita päringut siin uuesti "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Vaata ainult"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "tekstifaili asukoht"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "webiserveri üleslaadimiskataloogi"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7237,6 +7107,64 @@ msgstr "Vigane identifikaator"
msgid "Unknown Punctuation String"
msgstr "Tundmatu suunav tekst"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Käivita SQL käsk/käsud Masinas %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Päri SQL päring(uid) andmebaasist %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Kalender"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Väljade nimed"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Lisa see SQL päring järjehoidjasse"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehodjale"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Kirjuta samanimeline järjehoidja üle"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Antud päringut mitte muuta väljaspool akent."
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Eraldaja"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Näita päringut siin uuesti "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Vaata ainult"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "tekstifaili asukoht"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "webiserveri üleslaadimiskataloogi"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7246,6 +7174,48 @@ msgstr ""
"SQL-i valideerijat ei suudetud avada. Palun kontrollige, et te olete "
"installinud vastavad php moodulid nagu on kirjeldatud %sdokumentatsioonis%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Detailne seisuinformatsioon antud varundusmootori kohta puudub."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s on saadaval selles MySQL serveris."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s on keelatud selles MySQL serveris."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "See MySQL server ei toeta %s varundusmootorit."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Vigane andmebaas"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Vigane tabeli nimi"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Viga tabeli nime %1$s muutimsel %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabel %s on ümber nimetatud %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabel tundub olevat tühi!"
@@ -7377,6 +7347,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Lisa uus kasutaja"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Ei leia pildi kataloogi teemale %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Eelvaade pole saadaval."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "võta see"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Ei leia vaikimisi teemat %s!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Ei leia teemat %s!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Ei leia kataloogi teemale %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8485,8 +8487,8 @@ msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel."
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 privileegid otse MySQL privileges "
"tabelist. Tabeli sisu võib erineda sellest, mida server hetkel kasutab, seda "
diff --git a/po/eu.po b/po/eu.po
index 9cb772cc44..0ddf445184 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-07-21 14:53+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: basque \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: Pootle 2.0.1\n"
@@ -48,10 +48,10 @@ msgstr "Bilatu"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Bilatu"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Joan"
@@ -130,9 +130,9 @@ msgstr "Datu-basearen iruzkina: "
msgid "Table comments"
msgstr "Taularen iruzkinak"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Taularen iruzkinak"
msgid "Column"
msgstr "Zutabe izenak"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Zutabe izenak"
msgid "Type"
msgstr "Mota"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "Estekak honi:"
msgid "Comments"
msgstr "Iruzkinak"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "Iruzkinak"
msgid "No"
msgstr "Ez"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -338,8 +339,8 @@ msgstr "Murrizketak gehitu"
msgid "Switch to copied database"
msgstr "Kopiatutako taulara aldatu"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -513,8 +514,8 @@ msgstr "SQL-kontsulta %s datu-basean:"
msgid "Submit Query"
msgstr "Kontsulta bidali"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -615,7 +616,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Sarbidea ukatua"
@@ -743,8 +744,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -763,7 +764,7 @@ msgstr "Erlazioak"
msgid "Sum"
msgstr "Gehiketa"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
@@ -812,8 +813,8 @@ msgstr "Inprimatzeko ikuspegia"
msgid "Empty"
msgstr "Hutsik"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -891,9 +892,9 @@ msgstr ""
msgid "Status"
msgstr "Egoera"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -991,8 +992,8 @@ msgstr "Iraulketa %s fitxategian gorde da."
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1170,11 +1171,11 @@ msgstr "Hautatutako erabiltzaileak baztertu"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Editatu"
@@ -1795,218 +1796,12 @@ msgstr "lanean"
msgid "Second"
msgstr "segunduko"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr ""
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Ez dago indizerik definituta!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indizeak"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Bakarra"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinalitatea"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Iruzkinak"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Lehen mailako gakoa ezabatu da"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "%s indizea ezabatu da"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Datu-baseak"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Errorea"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Taularik ez"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "%s taula %s-(e)ra berrizendatua izan da"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Ongietorriak %s(e)ra"
@@ -2014,8 +1809,8 @@ msgstr "Ongietorriak %s(e)ra"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
@@ -2030,56 +1825,56 @@ msgstr ""
"eta pasahitza berpasatu beharko dituzu eta MySQL zerbitzariaren "
"administratzaileak emaniko informazioarekin bat egiten dutela ziurtatu."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Hasi saioa"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin dokumentazioa"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Zerbitzaria"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Erabiltzaile-izena:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Pasahitza:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Zerbitzariaren hautaketa"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Puntu honetarako cookie-ek gaituta egon behar dute."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Ezinezkoa MySql zerbitzarian saioa hastea"
@@ -2118,6 +1913,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Errorea"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2170,6 +1973,11 @@ msgstr "Taulak"
msgid "Data"
msgstr "Datuak"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indizeak"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2199,13 +2007,13 @@ msgid "Check Privileges"
msgstr "Pribilegioak egiaztatu"
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr ""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2451,85 +2259,8 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Itxi gabeko komatxoak"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Egitura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Egitura eta datuak"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "\"Insert\"ak osatu"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "\"insert\" hedatuak"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
+#: libraries/Config.class.php:1190
+msgid "Font size"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -3202,6 +2933,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Datu-baseak"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4729,6 +4466,87 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Itxi gabeko komatxoak"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Egitura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Egitura eta datuak"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "\"Insert\"ak osatu"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "\"insert\" hedatuak"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4794,6 +4612,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "Erabiltzaile berria gehitu"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4866,9 +4701,9 @@ msgstr "Luzera/Balioak*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4925,6 +4760,12 @@ msgstr "Kontsulta mota"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Iruzkinak"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4985,23 +4826,6 @@ msgid ""
"3.11[/a]"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5163,8 +4987,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:275
@@ -5894,8 +5718,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6205,6 +6029,42 @@ msgstr ""
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6222,41 +6082,6 @@ msgstr "SQL emaitza"
msgid "Generated by"
msgstr "Egilea:"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Datu-baserik ez"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6318,6 +6143,41 @@ msgstr "Zutabe izenak"
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Datu-baserik ez"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6340,6 +6200,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Ez dago indizerik definituta!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Bakarra"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinalitatea"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Lehen mailako gakoa ezabatu da"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "%s indizea ezabatu da"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6352,6 +6246,27 @@ msgstr "Batez"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6598,6 +6513,19 @@ msgstr ""
msgid "This format has no options"
msgstr "Formato honek ez du aukerarik"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Taularik ez"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Okerra"
@@ -6991,63 +6919,6 @@ msgstr ""
msgid "Target database"
msgstr "Datu-basean bilatu"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "SQL kontsulta(k) exekutatu %s datu-basean"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "SQL kontsulta(k) exekutatu %s datu-basean"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Zutabe izenak"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Kontsulta hau gogokoetan gorde"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri "
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Kontsulta hau ez idatzi gainean leihotik kanpo"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Kontsulta hau hemen berriz erakutsi"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Soilik ikusi"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Testu-fitxategiaren kokapena"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7111,6 +6982,63 @@ msgstr "Indentifikatzaile okerra"
msgid "Unknown Punctuation String"
msgstr "Puntuazio ikurra ezezaguna"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "SQL kontsulta(k) exekutatu %s datu-basean"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "SQL kontsulta(k) exekutatu %s datu-basean"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Zutabe izenak"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Kontsulta hau gogokoetan gorde"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri "
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Kontsulta hau ez idatzi gainean leihotik kanpo"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Kontsulta hau hemen berriz erakutsi"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Soilik ikusi"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Testu-fitxategiaren kokapena"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7121,6 +7049,48 @@ msgstr ""
"beharrezkoak diren php luzapenak instalatu dituzun %sdokumentazioan%s "
"azaltzen den moduan."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "%s taula %s-(e)ra berrizendatua izan da"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7252,6 +7222,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Erabiltzaile berria gehitu"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8340,8 +8342,8 @@ msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu."
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 "
diff --git a/po/fa.po b/po/fa.po
index 4f77f090d5..65af2c976c 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
"Last-Translator: \n"
"Language-Team: persian \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=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -45,10 +45,10 @@ msgstr "جستجو"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -61,18 +61,18 @@ msgstr "جستجو"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "تاييد"
@@ -129,9 +129,9 @@ msgstr "توضيحات پایگاه داده:"
msgid "Table comments"
msgstr "توضيحات جدول"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -140,12 +140,12 @@ msgstr "توضيحات جدول"
msgid "Column"
msgstr "ستون"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -155,9 +155,9 @@ msgstr "ستون"
msgid "Type"
msgstr "نوع"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -195,12 +195,13 @@ msgstr "پيوند به"
msgid "Comments"
msgstr "توضيحات"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -211,17 +212,17 @@ msgstr "توضيحات"
msgid "No"
msgstr "خير"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -329,8 +330,8 @@ msgstr "اعمال محدودیت ها"
msgid "Switch to copied database"
msgstr "تعویض به پایگاه داده ی کپی شده"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -498,8 +499,8 @@ msgstr "پرس و جوي SQL از پايگاه داده %s:"
msgid "Submit Query"
msgstr "Submit Query"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -597,7 +598,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "دسترسي مجاز نيست"
@@ -716,8 +717,8 @@ msgstr "پیگردی فعال نمی باشد."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 مراجعه "
"نمایید."
@@ -737,7 +738,7 @@ msgstr ""
msgid "Sum"
msgstr "مجموع"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
@@ -786,8 +787,8 @@ msgstr "نماي چاپ"
msgid "Empty"
msgstr "خالي كردن"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -864,9 +865,9 @@ msgstr "به روز شده"
msgid "Status"
msgstr ""
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -962,8 +963,8 @@ msgstr ""
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1136,11 +1137,11 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "ويرايش"
@@ -1755,218 +1756,12 @@ msgstr "دقیقه"
msgid "Second"
msgstr " ثانیه"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "اندازه حروف"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "هيچ فهرستي تعريفنشدهاست!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "فهرستها"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "يكتا"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr ""
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "توضيحات"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "كليد اصلي حذف گرديد"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "فهرست %s حذف گرديد"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "پايگاههاي داده"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "خطا"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "No tables"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "جدول %s به %s تغيير نام دادهشد"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "پش دید موجود نمی باشد"
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "به %s خوشآمديد"
@@ -1974,8 +1769,8 @@ msgstr "به %s خوشآمديد"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
@@ -1986,57 +1781,57 @@ msgid ""
"the administrator of the MySQL server."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "ورود"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "مستندات phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
#, fuzzy
msgid "Server:"
msgstr "سرور"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "نام كاربر:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "اسم رمز:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr ""
@@ -2075,6 +1870,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "خطا"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2127,6 +1930,11 @@ msgstr "جدولها"
msgid "Data"
msgstr "داده"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "فهرستها"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2156,13 +1964,13 @@ msgid "Check Privileges"
msgstr "ويرايش امتيازات"
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr ""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2409,84 +2217,9 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr ""
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "ساختار"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "ساختار و دادهها"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "تمام وروديها"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "وروديهاي تمديدشده"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "اندازه حروف"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3151,6 +2884,12 @@ msgstr ""
msgid "LaTeX"
msgstr ""
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "پايگاههاي داده"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4661,6 +4400,85 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr ""
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "ساختار"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "ساختار و دادهها"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "تمام وروديها"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "وروديهاي تمديدشده"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4726,6 +4544,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "افزودن يك كاربر جديد"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4798,9 +4633,9 @@ msgstr "طول/مقادير*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4855,6 +4690,12 @@ msgstr ""
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "توضيحات"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4912,23 +4753,6 @@ msgid ""
"3.11[/a]"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5088,8 +4912,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:275
@@ -5808,8 +5632,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6114,6 +5938,42 @@ msgstr "نمایش"
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6131,41 +5991,6 @@ msgstr "نتيجه SQL"
msgid "Generated by"
msgstr "توليدشده توسط"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "No databases"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6227,6 +6052,41 @@ msgstr "نام ستونها"
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "No databases"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6249,6 +6109,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "هيچ فهرستي تعريفنشدهاست!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "يكتا"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr ""
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "كليد اصلي حذف گرديد"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "فهرست %s حذف گرديد"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6261,6 +6155,27 @@ msgstr "خير"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6504,6 +6419,19 @@ msgstr ""
msgid "This format has no options"
msgstr ""
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "No tables"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "not OK"
@@ -6892,6 +6820,57 @@ msgstr ""
msgid "Target database"
msgstr "جستجو در پايگاهداده"
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr "BEGIN CUT"
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr "END CUT"
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr "BEGIN RAW"
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr "END RAW"
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sql_query_form.lib.php:223
#, fuzzy, php-format
msgid "Run SQL query/queries on server %s"
@@ -6950,57 +6929,6 @@ msgstr "محل پرونده متني"
msgid "web server upload directory"
msgstr ""
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr "BEGIN CUT"
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr "END CUT"
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr "BEGIN RAW"
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr "END RAW"
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7008,6 +6936,48 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "جدول %s به %s تغيير نام دادهشد"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7032,9 +7002,9 @@ msgid ""
msgstr ""
"اگر نوع ستون \"enum\" يا \"set\" ميباشد ، لطفا براي ورود مقادير از اين قالب "
"استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز "
-"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده "
-"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' "
-"يا 'a\\'b')"
+"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده نماييد "
+"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a"
+"\\'b')"
#: libraries/tbl_properties.inc.php:106
msgid ""
@@ -7069,9 +7039,9 @@ msgid ""
msgstr ""
"اگر نوع ستون \"enum\" يا \"set\" ميباشد ، لطفا براي ورود مقادير از اين قالب "
"استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز "
-"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده "
-"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' "
-"يا 'a\\'b')"
+"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده نماييد "
+"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a"
+"\\'b')"
#: libraries/tbl_properties.inc.php:352
msgid "ENUM or SET data too long?"
@@ -7134,6 +7104,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "افزودن يك كاربر جديد"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "پش دید موجود نمی باشد"
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7336,8 +7338,8 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
"پرونده پيكربندي شما حاوي تنظيماتي است (كاربر root بدون اسم رمز) كه مرتبط با "
-"حساب پيشفرض MySQL ميباشد. اجراي MySQL با اين پيشفرض باعث ورود غيرمجاز "
-"ميشود ، و شما بايد اين حفره امنيتي را ذرست كنيد."
+"حساب پيشفرض MySQL ميباشد. اجراي MySQL با اين پيشفرض باعث ورود غيرمجاز ميشود "
+"، و شما بايد اين حفره امنيتي را ذرست كنيد."
#: main.php:251
msgid ""
@@ -8132,8 +8134,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 ""
#: server_privileges.php:1764
diff --git a/po/fi.po b/po/fi.po
index 8c3f83c6f8..9e6bb3a658 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-11-26 21:29+0200\n"
"Last-Translator: \n"
"Language-Team: finnish \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: Pootle 2.0.5\n"
@@ -48,10 +48,10 @@ msgstr "Etsi"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Etsi"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Siirry"
@@ -132,9 +132,9 @@ msgstr "Tietokannan kommentti: "
msgid "Table comments"
msgstr "Taulun kommentit"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Taulun kommentit"
msgid "Column"
msgstr "Sarake"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Sarake"
msgid "Type"
msgstr "Tyyppi"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "Linkitys sarakkeeseen:"
msgid "Comments"
msgstr "Kommentit"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "Kommentit"
msgid "No"
msgstr "Ei"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -332,8 +333,8 @@ msgstr "Lisää rajoitteet"
msgid "Switch to copied database"
msgstr "Siirry kopioituun tietokantaan"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -497,8 +498,8 @@ msgstr "Suorita SQL-kysely tietokannassa %s:"
msgid "Submit Query"
msgstr "Suorita"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -606,7 +607,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Käyttö estetty"
@@ -727,11 +728,11 @@ msgstr "Seuranta ei ole käytössä."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -748,7 +749,7 @@ msgstr "Kahdennus"
msgid "Sum"
msgstr "Summa"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s on tämän MySQL-palvelimen oletustallennusmoottori."
@@ -797,8 +798,8 @@ msgstr "Tulostusversio"
msgid "Empty"
msgstr "Tyhjennä"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -877,9 +878,9 @@ msgstr "Päivitetty"
msgid "Status"
msgstr "Tila"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -973,8 +974,8 @@ msgstr "Vedos tallennettiin tiedostoon %s."
#: import.php:58
#, 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."
msgstr ""
"Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso "
"tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s."
@@ -1157,11 +1158,11 @@ msgstr "Poista valitut käyttäjät"
msgid "Close"
msgstr "Sulje"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Muokkaa"
@@ -1714,229 +1715,12 @@ msgstr "Minuutti"
msgid "Second"
msgstr "Sekunti"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Fonttikoko"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Lähetyn tidoston koko ylittää php.ini-tiedoston upload_max_filesize-"
-"asetuksen arvon."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Lähetetyn tiedoston koko ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-"
-"asetuksen arvon."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Tiedosto lähetettiin vain osittain."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Tilapäiskansio puuttuu."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Tiedoston kirjoitus levylle epäonnistui."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Laajennus keskeytti tiedoston lähetyksen."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Tuntematon virhe tiedostoa lähetettäessä."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Virhe lähetettäessä tiedostoa, katso FAQ 1.11"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Indeksiä ei ole määritelty!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeksit"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Uniikki"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Pakattu"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinaliteetti"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Kommentti"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Perusavain on poistettu"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeksi %s on poistettu"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Indeksit %1$s ja %2$s ovat ehkä samoja, ja niistä jompikumpi kannattanee "
-"poistaa."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Tietokannat"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Virhe"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d rivi(ä) muutettu."
-msgstr[1] "%1$d rivi(ä) muutettu."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d rivi(ä) poistettu."
-msgstr[1] "%1$d rivi(ä) poistettu."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d rivi lisätty."
-msgstr[1] "%1$d riviä lisätty."
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Cannot load or save configuration"
-msgid "Could not save recent table"
-msgstr "Asetuksia ei voi ladata tai tallentaa"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Laske taulujen määrä"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Palvelimia ei ole määritelty"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Tämän tallennusmoottorin tilasta ei ole saatavilla yksityiskohtaisia tietoja."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s on käytettävissä tällä MySQL-palvelimella."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s ei ole käytettävissä tällä MySQL-palvelimella."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Tämä MySQL-palvelin ei tue %s-tallennusmoottoria."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Virheellinen tietokanta"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Virheellinen taulun nimi"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Virhe annettaessa taululle %1$s nimeä %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Taulun %s nimi on nyt %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Kelvollista polkua teemalle %s ei löytynyt."
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Esikatselu ei ole saatavilla."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "käytä tätä"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Oletusteemaa %s ei löydy!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Teemaa %s ei löydy!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Teeman %s polkua ei löydy!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Yhteyttä ei voitu muodostaa: virheelliset asetukset."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Tervetuloa, toivottaa %s"
@@ -1944,11 +1728,11 @@ msgstr "Tervetuloa, toivottaa %s"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
msgid ""
@@ -1962,44 +1746,44 @@ msgstr ""
"php-tiedostosta ja varmista, että ne vastaavat MySQL-palvelimen "
"järjestelmänvalvojan antamia tietoja."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Kirjaudu sisään"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdminin ohjeet"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
"Voit syöttää verkkotunnuksen/IP-osoitteen ja portin välilyönnillä erotettuna."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Palvelin"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Käyttäjätunnus:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Salasana:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Valitse palvelin"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Selaimessa on oltava evästeet päällä tästä lähtien."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -2007,7 +1791,7 @@ msgstr ""
"Kirjautuminen ilman salasanaa on kielletty asetuksissa (katso "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -2015,8 +1799,8 @@ msgstr ""
"Yhteys on ollut toimettomana %s sekuntia tai kauemmin. Kirjaudu sisään "
"uudestaan."
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "MySQL-palvelimelle ei voitu kirjautua"
@@ -2057,6 +1841,14 @@ msgstr "PBMS-virhe"
msgid "PBMS connection failed:"
msgstr "PBMS-yhteys epäonnistui:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Virhe"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS:n BLOB-tietojen haku epäonnistui:"
@@ -2109,6 +1901,11 @@ msgstr "Taulut"
msgid "Data"
msgstr "Tietoa"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeksit"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2138,13 +1935,13 @@ msgstr "Hallitse käyttöoikeuksia"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Cannot load or save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Asetuksia ei voi ladata tai tallentaa"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2387,77 +2184,9 @@ msgstr "Lähetettäviä tiedostoja ei ole"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Molemmat"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Ei missään"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Vasen"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Oikea"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Avaa"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Suljettu"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "rakenne"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "tiedot"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "rakenne ja tiedot"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Nopea asetusten määritys - näytä asetuksia mahdollisimman vähän"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Mukautettu - näytä kaikki mahdolliset asetukset"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Mukautettu - kuten yllä, mutta ilman pika-/mukautettu-valintaa"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "Kokonaiset lisäyslauseet"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "Laajennetut lisäyslauseet"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "molemmat yltä"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "ei kumpikaan yltä"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Fonttikoko"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3147,6 +2876,12 @@ msgstr "Aseta tuonti- ja vientihakemistot sekä pakkauksen asetukset"
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Tietokannat"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Tietokantojen näyttöasetukset"
@@ -4851,6 +4586,78 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Virheellinen IP-osoite: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Molemmat"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Ei missään"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Vasen"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Oikea"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Avaa"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Suljettu"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "rakenne"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "tiedot"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "rakenne ja tiedot"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Nopea asetusten määritys - näytä asetuksia mahdollisimman vähän"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Mukautettu - näytä kaikki mahdolliset asetukset"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Mukautettu - kuten yllä, mutta ilman pika-/mukautettu-valintaa"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "Kokonaiset lisäyslauseet"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "Laajennetut lisäyslauseet"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "molemmat yltä"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "ei kumpikaan yltä"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4921,6 +4728,26 @@ msgstr ""
msgid "Add a new Event"
msgstr "Lisää uusi palvelin"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Yhteyden muodostus asetuksissa määriteltyyn superuser-käyttäjään epäonnistui."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Palvelin ei vastaa"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+"(tai paikallisen MySQL-palvelimen pistokkeen asetuksia ei ole määritelty "
+"oikein)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Lisätiedot..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4995,9 +4822,9 @@ msgstr "Pituus/Arvot*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -5056,6 +4883,11 @@ msgstr "Turvallisuus"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Kommentti"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5120,26 +4952,6 @@ msgid ""
"3.11[/a]"
msgstr "Saattaa olla summittainen. Katso FAQ 3.11"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Yhteyden muodostus asetuksissa määriteltyyn superuser-käyttäjään epäonnistui."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Palvelin ei vastaa"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-"(tai paikallisen MySQL-palvelimen pistokkeen asetuksia ei ole määritelty "
-"oikein)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Lisätiedot..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5311,8 +5123,8 @@ msgstr ""
#| "happen: %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 ""
"Tämä arvo on %1$sstrftime%2$s-funktion mukainen, joten "
"ajanmuodostostusmerkkijonoja voi käyttää. Lisäksi tapahtuu seuraavat "
@@ -6113,8 +5925,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6430,6 +6242,46 @@ msgstr "Näkymä"
msgid "Export contents"
msgstr "Vie sisällöt"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Lähetyn tidoston koko ylittää php.ini-tiedoston upload_max_filesize-"
+"asetuksen arvon."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Lähetetyn tiedoston koko ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-"
+"asetuksen arvon."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Tiedosto lähetettiin vain osittain."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Tilapäiskansio puuttuu."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Tiedoston kirjoitus levylle epäonnistui."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Laajennus keskeytti tiedoston lähetyksen."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Tuntematon virhe tiedostoa lähetettäessä."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Virhe lähetettäessä tiedostoa, katso FAQ 1.11"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6449,41 +6301,6 @@ msgstr "SQL-kyselyn tulos"
msgid "Generated by"
msgstr "Luontiympäristö"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Seuraavat rakenteet on joko luotu tai niitä on muutettu. Voit:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "näyttää rakenteen sisällön painamalla sen nimeä"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"muuttaa mitä tahansa sen asetuksia painamalla vastaavaa \"Valinnat\"-linkkiä"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Muokkaa sen rakennetta seuraamalla \"Rakenne\"-linkkiä"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Siirry tietokantaan"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "asetukset"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Siirry tauluun"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Siirry näkymään"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6546,6 +6363,41 @@ msgstr "Sarakkeiden nimet"
msgid "This plugin does not support compressed imports!"
msgstr "Tämä lisäosa ei tue pakattujen tuontien käyttöä!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Seuraavat rakenteet on joko luotu tai niitä on muutettu. Voit:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "näyttää rakenteen sisällön painamalla sen nimeä"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"muuttaa mitä tahansa sen asetuksia painamalla vastaavaa \"Valinnat\"-linkkiä"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Muokkaa sen rakennetta seuraamalla \"Rakenne\"-linkkiä"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Siirry tietokantaan"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "asetukset"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Siirry tauluun"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Siirry näkymään"
+
#: libraries/import/ods.php:28
#, fuzzy
#| msgid "Import percentages as proper decimals (12.00% to .12)"
@@ -6578,6 +6430,42 @@ msgstr ""
"Määritetty XML-tiedosto on joko epämuotoinen tai vaillinainen. Korjaa "
"ongelma ja yritä uudestaan."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Indeksiä ei ole määritelty!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Uniikki"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Pakattu"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinaliteetti"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Perusavain on poistettu"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeksi %s on poistettu"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Indeksit %1$s ja %2$s ovat ehkä samoja, ja niistä jompikumpi kannattanee "
+"poistaa."
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6590,6 +6478,27 @@ msgstr "Ei mitään"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d rivi(ä) muutettu."
+msgstr[1] "%1$d rivi(ä) muutettu."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d rivi(ä) poistettu."
+msgstr[1] "%1$d rivi(ä) poistettu."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d rivi lisätty."
+msgstr[1] "%1$d riviä lisätty."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6835,6 +6744,24 @@ msgstr "Mukauta navigointikehystä"
msgid "This format has no options"
msgstr "Tälle tiedostomuodolle ei ole valinta-asetuksia"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Could not save recent table"
+msgstr "Asetuksia ei voi ladata tai tallentaa"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Laske taulujen määrä"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Palvelimia ei ole määritelty"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Ei kunnossa"
@@ -7226,61 +7153,6 @@ msgstr "Ero"
msgid "Target database"
msgstr "Kohdetietokanta"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Suorita SQL-kysely(jä) palvelimella %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Suorita SQL-kyselyjä tietokannassa %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Tyhjennä"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Sarakkeet"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Tallenna SQL-kysely"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Korvaa samanniminen, olemassa oleva kirjanmerkki"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Älä korvaa tätä kyselyä ikkunan ulkopuolelta"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Erotinmerkki"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Näytä kyselylause uudelleen "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Näytä"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Tiedoston sijainti"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "palvelimen lähetyshakemisto"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7342,6 +7214,61 @@ msgstr "Tunniste ei kelpaa"
msgid "Unknown Punctuation String"
msgstr "Tuntematon välimerkki"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Suorita SQL-kysely(jä) palvelimella %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Suorita SQL-kyselyjä tietokannassa %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Tyhjennä"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Sarakkeet"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Tallenna SQL-kysely"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Korvaa samanniminen, olemassa oleva kirjanmerkki"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Älä korvaa tätä kyselyä ikkunan ulkopuolelta"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Erotinmerkki"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Näytä kyselylause uudelleen "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Näytä"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Tiedoston sijainti"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "palvelimen lähetyshakemisto"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7351,6 +7278,49 @@ msgstr ""
"SQL-tarkistinta ei voitu käynnistää. Tarkista, että tarpeelliset PHP-"
"laajennukset on asennettu. Lisätietoa on %sohjeissa%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Tämän tallennusmoottorin tilasta ei ole saatavilla yksityiskohtaisia tietoja."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s on käytettävissä tällä MySQL-palvelimella."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s ei ole käytettävissä tällä MySQL-palvelimella."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Tämä MySQL-palvelin ei tue %s-tallennusmoottoria."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Virheellinen tietokanta"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Virheellinen taulun nimi"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Virhe annettaessa taululle %1$s nimeä %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Taulun %s nimi on nyt %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Taulu on tyhjä!"
@@ -7481,6 +7451,38 @@ msgstr "PARTITION-määritelmä"
msgid "+ Add a new value"
msgstr "Lisää uusi palvelin"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Kelvollista polkua teemalle %s ei löytynyt."
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Esikatselu ei ole saatavilla."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "käytä tätä"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Oletusteemaa %s ei löydy!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Teemaa %s ei löydy!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Teeman %s polkua ei löydy!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8623,8 +8625,8 @@ msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä."
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 "
@@ -10266,9 +10268,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
-#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
-#| "[/kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
+#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
+#| "kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
diff --git a/po/fr.po b/po/fr.po
index c3874f10c7..58d60cdc11 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-06-17 17:10+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: french \n"
-"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -49,10 +49,10 @@ msgstr "Rechercher"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Rechercher"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Exécuter"
@@ -133,9 +133,9 @@ msgstr "Commentaire sur la base de données: "
msgid "Table comments"
msgstr "Commentaires sur la table"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "Commentaires sur la table"
msgid "Column"
msgstr "Colonne"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "Colonne"
msgid "Type"
msgstr "Type"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,12 +199,13 @@ msgstr "Relié à"
msgid "Comments"
msgstr "Commentaires"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +216,17 @@ msgstr "Commentaires"
msgid "No"
msgstr "Non"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -333,8 +334,8 @@ msgstr "Inclure les contraintes de clés étrangères"
msgid "Switch to copied database"
msgstr "Aller à la base de données copiée"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -498,8 +499,8 @@ msgstr "Requête SQL sur la base %s: "
msgid "Submit Query"
msgstr "Exécuter la requête"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -607,7 +608,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Accès refusé"
@@ -728,11 +729,11 @@ msgstr "Le suivi n'est pas activé."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -749,7 +750,7 @@ msgstr "Réplication"
msgid "Sum"
msgstr "Somme"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "Sur ce serveur MySQL, le moteur de stockage par défaut est %s."
@@ -798,8 +799,8 @@ msgstr "Version imprimable"
msgid "Empty"
msgstr "Vider"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -872,9 +873,9 @@ msgstr "Mis à jour"
msgid "Status"
msgstr "État"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -970,8 +971,8 @@ msgstr "Le fichier d'exportation a été sauvegardé sous %s."
#: import.php:58
#, 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."
msgstr ""
"Vous avez probablement tenté de télécharger un fichier trop volumineux. "
"Veuillez vous référer à la %sdocumentation%s pour des façons de contourner "
@@ -1157,11 +1158,11 @@ msgstr "Effacement des utilisateurs sélectionnés"
msgid "Close"
msgstr "Fermer"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Modifier"
@@ -1694,226 +1695,12 @@ msgstr "Minute"
msgid "Second"
msgstr "Seconde"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Taille du texte"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"La taille du fichier téléchargé dépasse la limite permise par la directive "
-"upload_max_filesize de php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"La taille du fichier téléchargé dépasse la limite permise par la directive "
-"MAX_FILE_SIZE présente dans le formulaire HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Le fichier n'a été que partiellement téléchargé."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Répertoire temporaire manquant."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Erreur lors de l'écriture du fichier sur disque."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Téléchargement arrêté par l'extension."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Erreur inconnue durant le téléchargement."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Erreur lors du déplacement du fichier téléchargé, voir [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Aucun index n'est défini !"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Index"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unique"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Compressé"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinalité"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Commentaire"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "La clé primaire a été effacée"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "L'index %s a été effacé"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Les index %1$s et %2$s semblent identiques et l'un d'eux pourrait être "
-"supprimé."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Bases de données"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Erreur"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d ligne affectée."
-msgstr[1] "%1$d lignes affectées."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d ligne supprimée."
-msgstr[1] "%1$d lignes supprimées."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d ligne insérée."
-msgstr[1] "%1$d lignes insérées."
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Impossible de sauvegarder l'historique des tables récentes"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Tables récentes"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Il n'y a pas de tables récentes"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Aucune information détaillée sur l'état n'est disponible pour ce moteur de "
-"stockage."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s est disponible sur ce serveur MySQL."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s a été désactivé sur ce serveur MySQL."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Ce serveur MySQL ne supporte pas le moteur de stockage %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Nom de base de données invalide"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Nom de table invalide"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Erreur lors du renommage de %1$s en %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "La table %s se nomme maintenant %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Impossible de sauvegarder les préférences d'interface de tables"
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Chemin des images inexistant pour le thème %s !"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Prévisualisation non disponible."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "utiliser celui-ci"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Thème par défaut %s inexistant !"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Thème %s inexistant !"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Chemin non trouvé pour le thème %s !"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr "Thème"
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Connexion impossible: paramètres incorrects."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Bienvenue sur %s"
@@ -1921,8 +1708,8 @@ msgstr "Bienvenue sur %s"
#: libraries/auth/config.auth.lib.php:106
#, 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."
@@ -1939,45 +1726,45 @@ msgstr ""
"dans votre configuration et vous assurer qu'elles correspondent aux "
"informations fournies par l'administrateur du serveur MySQL."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Connexion"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Documentation de phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
"Vous pouvez entrer le nom du serveur ou son adresse IP, ainsi que le port "
"séparé par un espace."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Serveur : "
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Utilisateur : "
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Mot de passe : "
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Choix du serveur"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Vous devez accepter les cookies pour poursuivre."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -1985,14 +1772,14 @@ msgstr ""
"La configuration interdit une connexion sans mot de passe (voir "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Aucune activité depuis %s secondes ou plus, veuillez vous reconnecter"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Connexion au serveur MySQL non permise"
@@ -2031,6 +1818,14 @@ msgstr "Erreur PBMS"
msgid "PBMS connection failed:"
msgstr "La connexion PBMS a échoué :"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Erreur"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "L'accès aux informations BLOB de PBMS a échoué :"
@@ -2083,6 +1878,11 @@ msgstr "Tables"
msgid "Data"
msgstr "Données"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Index"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2112,13 +1912,13 @@ msgstr "Vérifier les privilèges"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Impossible de sauvegarder la configuration"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2368,77 +2168,9 @@ msgstr "Aucun fichier n'est disponible pour le transfert"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Les deux"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Nulle part"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "À gauche"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "À droite"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Ouvert"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Fermé"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "structure"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "données"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "structure et données"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Rapide - n'afficher qu'un minimum d'options à configurer"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Personnalisée - afficher toutes les options possibles"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Personnalisée - comme ci-haut mais sans les choix rapide/personnalisée"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "Insertions complètes"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "Insertions étendues"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "tous les choix ci-haut"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "aucun des choix ci-haut"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Taille du texte"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3099,6 +2831,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Bases de données"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Options d'affichage des bases de données"
@@ -4731,6 +4469,78 @@ msgstr "Le controlpass est vide"
msgid "Incorrect IP address: %s"
msgstr "Adresse IP incorrecte : %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Les deux"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Nulle part"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "À gauche"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "À droite"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Ouvert"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Fermé"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "structure"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "données"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "structure et données"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Rapide - n'afficher qu'un minimum d'options à configurer"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Personnalisée - afficher toutes les options possibles"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Personnalisée - comme ci-haut mais sans les choix rapide/personnalisée"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "Insertions complètes"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "Insertions étendues"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "tous les choix ci-haut"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "aucun des choix ci-haut"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4801,6 +4611,26 @@ msgstr ""
msgid "Add a new Event"
msgstr "Ajouter un serveur"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"La connexion au controluser tel que défini dans votre configuration a échoué."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Le serveur ne répond pas"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+"(ou l'interface de connexion vers le serveur MySQL local n'est pas "
+"correctement configurée)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Détails..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4875,9 +4705,9 @@ msgstr "Taille/Valeurs*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4936,6 +4766,11 @@ msgstr "Sécurité"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Commentaire"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5002,26 +4837,6 @@ msgstr ""
"Peut être approximatif. Voir [a@./Documentation.html#faq3_11@Documentation]"
"FAQ 3.11[/a]"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"La connexion au controluser tel que défini dans votre configuration a échoué."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Le serveur ne répond pas"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-"(ou l'interface de connexion vers le serveur MySQL local n'est pas "
-"correctement configurée)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Détails..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5160,8 +4975,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 "
@@ -5949,8 +5764,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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."
@@ -6100,8 +5915,7 @@ msgstr ""
#: libraries/export/sql.php:43
msgid "Additional custom header comment (\\n splits lines):"
-msgstr ""
-"Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :"
+msgstr "Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :"
#: libraries/export/sql.php:48
msgid ""
@@ -6259,6 +6073,48 @@ msgstr "Vues"
msgid "Export contents"
msgstr "Exporter le contenu"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"La taille du fichier téléchargé dépasse la limite permise par la directive "
+"upload_max_filesize de php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"La taille du fichier téléchargé dépasse la limite permise par la directive "
+"MAX_FILE_SIZE présente dans le formulaire HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Le fichier n'a été que partiellement téléchargé."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Répertoire temporaire manquant."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Erreur lors de l'écriture du fichier sur disque."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Téléchargement arrêté par l'extension."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Erreur inconnue durant le téléchargement."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Erreur lors du déplacement du fichier téléchargé, voir [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6278,42 +6134,6 @@ msgstr "Résultat de la requête SQL"
msgid "Generated by"
msgstr "Généré par"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-"Les structures suivanates ont été créées ou modifiées. Ici vous pouvez :"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Consulter le contenu d'une structure en cliquant sur son nom"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Modifiez l'un des paramètres en cliquant le lien «Options» correspondant"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Modifier sa structure via le lien «Structure»"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Aller à la base de données"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "paramètres"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Aller à la table"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Aller à la vue"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6382,6 +6202,42 @@ msgstr "Nom des colonnes"
msgid "This plugin does not support compressed imports!"
msgstr "Ce greffon ne supporte pas les importations en format comprimé !"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+"Les structures suivanates ont été créées ou modifiées. Ici vous pouvez :"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Consulter le contenu d'une structure en cliquant sur son nom"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Modifiez l'un des paramètres en cliquant le lien «Options» correspondant"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Modifier sa structure via le lien «Structure»"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Aller à la base de données"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "paramètres"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Aller à la table"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Aller à la vue"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6407,6 +6263,42 @@ msgstr ""
"Le fichier XML spécifié était mal formé ou incomplet. Veuillez le corriger "
"et essayer à nouveau."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Aucun index n'est défini !"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unique"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Compressé"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinalité"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "La clé primaire a été effacée"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "L'index %s a été effacé"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Les index %1$s et %2$s semblent identiques et l'un d'eux pourrait être "
+"supprimé."
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6417,6 +6309,27 @@ msgstr "Aucune"
msgid "Convert to Kana"
msgstr "Conversion en kana"
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d ligne affectée."
+msgstr[1] "%1$d lignes affectées."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d ligne supprimée."
+msgstr[1] "%1$d lignes supprimées."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d ligne insérée."
+msgstr[1] "%1$d lignes insérées."
+
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "Depuis"
@@ -6655,6 +6568,18 @@ msgstr "Actualiser"
msgid "This format has no options"
msgstr "Ce format ne comporte pas d'options"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Impossible de sauvegarder l'historique des tables récentes"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Tables récentes"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Il n'y a pas de tables récentes"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "en erreur"
@@ -7040,61 +6965,6 @@ msgstr "Différence"
msgid "Target database"
msgstr "Base de données cible"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Exécuter une ou des requêtes SQL sur le serveur %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Exécuter une ou des requêtes SQL sur la base %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Vider"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Colonnes"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Conserver cette requête SQL dans les signets"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Signet visible pour les autres utilisateurs"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Remplacer un signet existant du même nom"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Ne pas écraser cette requête depuis une autre fenêtre"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Délimiteur"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Afficher à nouveau la requête après exécution"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Voir uniquement"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Emplacement du fichier texte"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "répertoire de transfert du serveur web"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7157,6 +7027,61 @@ msgstr "Identificateur invalide"
msgid "Unknown Punctuation String"
msgstr "Ponctuation invalide"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Exécuter une ou des requêtes SQL sur le serveur %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Exécuter une ou des requêtes SQL sur la base %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Vider"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Colonnes"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Conserver cette requête SQL dans les signets"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Signet visible pour les autres utilisateurs"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Remplacer un signet existant du même nom"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Ne pas écraser cette requête depuis une autre fenêtre"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Délimiteur"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Afficher à nouveau la requête après exécution"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Voir uniquement"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Emplacement du fichier texte"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "répertoire de transfert du serveur web"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7164,8 +7089,52 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%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."
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Aucune information détaillée sur l'état n'est disponible pour ce moteur de "
+"stockage."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s est disponible sur ce serveur MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s a été désactivé sur ce serveur MySQL."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Ce serveur MySQL ne supporte pas le moteur de stockage %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Nom de base de données invalide"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Nom de table invalide"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Erreur lors du renommage de %1$s en %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "La table %s se nomme maintenant %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Impossible de sauvegarder les préférences d'interface de tables"
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
@@ -7285,6 +7254,38 @@ msgstr "Définition de PARTITION"
msgid "+ Add a new value"
msgstr "+ Ajouter une valeur"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Chemin des images inexistant pour le thème %s !"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Prévisualisation non disponible."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "utiliser celui-ci"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Thème par défaut %s inexistant !"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Thème %s inexistant !"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Chemin non trouvé pour le thème %s !"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "Thème"
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8352,8 +8353,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 ""
"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 "
@@ -9832,8 +9833,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."
#: setup/lib/index.lib.php:252
msgid ""
@@ -9885,8 +9886,8 @@ msgid ""
msgstr ""
"Le paramètre %sLogin cookie validity%s avec une valeur de plus de 1440 "
"secondes peut causer des interruptions de la session de travail si le "
-"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement "
-"%d)."
+"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement %"
+"d)."
#: setup/lib/index.lib.php:262
#, php-format
@@ -9905,8 +9906,8 @@ msgid ""
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
"Si vous utilisez l'authentification cookie 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."
+"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."
#: setup/lib/index.lib.php:266
#, php-format
@@ -9916,8 +9917,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 du serveur%s et %sserveurs mandataires de confiance%s. "
+"Si vous l'estimez nécessaire, utilisez des paramètres de protection - %"
+"sauthentification du serveur%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."
diff --git a/po/gl.po b/po/gl.po
index 6d1722b6a1..3de11ef3a5 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-07-21 14:50+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: galician \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: Pootle 2.0.1\n"
@@ -49,10 +49,10 @@ msgstr "Procurar"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Procurar"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Executar"
@@ -133,9 +133,9 @@ msgstr "Comentario da base de datos: "
msgid "Table comments"
msgstr "Comentarios da táboa"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -146,12 +146,12 @@ msgstr "Comentarios da táboa"
msgid "Column"
msgstr "Nomes das columnas"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -161,9 +161,9 @@ msgstr "Nomes das columnas"
msgid "Type"
msgstr "Tipo"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -201,12 +201,13 @@ msgstr "Vincúlase con"
msgid "Comments"
msgstr "Comentarios"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -217,17 +218,17 @@ msgstr "Comentarios"
msgid "No"
msgstr "Non"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -339,8 +340,8 @@ msgstr "Engadir limitacións"
msgid "Switch to copied database"
msgstr "Pasar á base de datos copiada"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -514,8 +515,8 @@ msgstr "Procura tipo SQL na base de datos %s:"
msgid "Submit Query"
msgstr "Enviar esta procura"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -623,7 +624,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Denegouse o acceso"
@@ -751,11 +752,11 @@ msgstr "O seguemento non está activado."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -772,7 +773,7 @@ msgstr "Replicación"
msgid "Sum"
msgstr "Suma"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s é o motor de almacenamento predefinido neste servidor de MySQL."
@@ -821,8 +822,8 @@ msgstr "Visualización previa da impresión"
msgid "Empty"
msgstr "Borrar"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -901,9 +902,9 @@ msgstr "Actualizada"
msgid "Status"
msgstr "Estado"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -997,11 +998,11 @@ msgstr "Gardouse o volcado no ficheiro %s."
#: import.php:58
#, 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."
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:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1192,11 +1193,11 @@ msgstr "Eliminar os usuarios seleccionados"
msgid "Close"
msgstr "Fechar"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Modificar"
@@ -1839,233 +1840,12 @@ msgstr "en uso"
msgid "Second"
msgstr "por segundo"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Tamaño da letra"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"O tamaño do ficheiro enviado excede a directiva upload_max_filesize de php."
-"ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"O tamaño do ficheiro excede a directiva MAX_FILE_SIZE que se especificou no "
-"formulario HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "O ficheiro enviado só se recibiu parcialmente."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Falta un directorio temporal."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Non se puido escribir no disco."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Detívose o envío do ficheiro por causa do engadido."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Erro descoñecido ao enviar o ficheiro."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Erro ao mover o ficheiro enviado. Consulte FAQ 1.11"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Non se definiu ningún índice"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Índices"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Único"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Empaquetado"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinalidade"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Comentario"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Eliminouse a chave primaria"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Eliminouse o índice %s"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Parece que os índice %1$s e %2$s son iguais e posibelmente poderíase "
-"eliminar un deles"
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Bases de datos"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Houbo un erro"
-
-#: libraries/Message.class.php:260
-#, fuzzy, php-format
-#| msgid "%1$d row(s) affected."
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d fileira(s) afectada(s)."
-msgstr[1] "%1$d fileira(s) afectada(s)."
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "%1$d row(s) deleted."
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d fileira(s) eliminada(s)."
-msgstr[1] "%1$d fileira(s) eliminada(s)."
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "%1$d row(s) inserted."
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d fileira(s) inserida(s)."
-msgstr[1] "%1$d fileira(s) inserida(s)."
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Cannot load or save configuration"
-msgid "Could not save recent table"
-msgstr "Non se puido cargar ou gravar a configuración"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Contar as táboas"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Non hai ningún servidor configurado"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Non se conta con información de estado detallada sobre este motor de "
-"almacenamento."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s está dispoñíbel neste servidor de MySQL."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s foi desactivado neste servidor de MySQL."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Este servidor de MySQL non acepta o motor de almacenamento %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "A base de datos non é válida"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Non se admite este nome de táboa."
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Houbo un erro ao mudarlle o nome á táboa %1$s para %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "A táboa %s chámase agora %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Non hai un camiño válido de imaxe para o tema %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Non se dispón de previsualización."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "cólleo"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Non se atopou o tema por omisión %s!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Non se atopou o tema %s!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Non se atopou o camiño do tema para o tema %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Non se pode conectar: os axustes non son válidos."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Reciba a benvida a %s"
@@ -2073,8 +1853,8 @@ msgstr "Reciba a benvida a %s"
#: libraries/auth/config.auth.lib.php:106
#, 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."
@@ -2091,52 +1871,52 @@ msgstr ""
"e o contrasinal no ficheiro config.inc.php e asegurarse de que corresponden "
"coa información proporcionada polo administrador do servidor do MySQL."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Entrada (login)"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Documentación do phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
"Pode escribir o nome de servidor/enderezo IP e o porto separados por un "
"espazo."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Servidor"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Nome de usuario:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Contrasinal:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Escolla de servidor"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "A partir de aquí debe permitir cookies."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"A configuración prohibe rexistrarse sen contrasinal (vexa AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -2144,8 +1924,8 @@ msgstr ""
"Non se rexistrou actividade ningunha desde hai %s segundos ou máis. Terá que "
"entrar de novo"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Non se dá conectado co servidor de MySQL"
@@ -2190,6 +1970,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Codificación de caracteres (Collation) da conexión de MySQL"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Houbo un erro"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2242,6 +2030,11 @@ msgstr "Táboas"
msgid "Data"
msgstr "Datos"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Índices"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2277,13 +2070,13 @@ msgstr "Comprobar os privilexios"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Cannot load or save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Non se puido cargar ou gravar a configuración"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2536,85 +2329,9 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Close"
-msgid "Closed"
-msgstr "Fechar"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "estrutura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Estrutura e datos"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Insercións completas"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Insercións estendidas"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Tamaño da letra"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3325,6 +3042,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Bases de datos"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Opcións de exhibición das bases de datos"
@@ -5057,6 +4780,86 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "O enderezo IP é incorrecto: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Close"
+msgid "Closed"
+msgstr "Fechar"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "estrutura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Estrutura e datos"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Insercións completas"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Insercións estendidas"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -5127,6 +4930,25 @@ msgstr ""
msgid "Add a new Event"
msgstr "Engadir un servidor novo"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Fallou a conexión para controluser tal e como se define na súa configuración."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "O servidor non está a responder"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+"(ou o socket local do servidor de MySQL non se configurou correctamente)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Detalles..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -5201,9 +5023,9 @@ msgstr "Tamaño/Definir*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -5262,6 +5084,11 @@ msgstr "Seguranza"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Comentario"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5326,25 +5153,6 @@ msgid ""
"3.11[/a]"
msgstr "Pode non ser exacto. Consulte a FAQ 3.11"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Fallou a conexión para controluser tal e como se define na súa configuración."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "O servidor non está a responder"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-"(ou o socket local do servidor de MySQL non se configurou correctamente)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Detalles..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5517,8 +5325,8 @@ msgstr ""
#| "happen: %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 ""
"Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode "
"utilizar cadeas de formato de hora. Produciranse transformacións en "
@@ -6336,8 +6144,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6653,6 +6461,46 @@ msgstr "Vista"
msgid "Export contents"
msgstr "Exportar o contido"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"O tamaño do ficheiro enviado excede a directiva upload_max_filesize de php."
+"ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"O tamaño do ficheiro excede a directiva MAX_FILE_SIZE que se especificou no "
+"formulario HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "O ficheiro enviado só se recibiu parcialmente."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Falta un directorio temporal."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Non se puido escribir no disco."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Detívose o envío do ficheiro por causa do engadido."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Erro descoñecido ao enviar o ficheiro."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Erro ao mover o ficheiro enviado. Consulte FAQ 1.11"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6670,41 +6518,6 @@ msgstr "Resultado SQL"
msgid "Generated by"
msgstr "Xerado por"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "As estruturas seguintes foron creadas ou alteradas. Aquí pode:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Ver o contido dunha estrutura premendo o seu nome"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Mude calqueraa destas opcións premendo a ligazón \"Opcións\" correspondente"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Modificar a súa estrutura seguindo a ligazón \"Estrutura\""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Ir á base de datos"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "opcións"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Ir á táboa"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Ir á vista"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6767,6 +6580,41 @@ msgstr "Nomes das columnas"
msgid "This plugin does not support compressed imports!"
msgstr "Este engadido non é capaz de realizar importacións comprimidas!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "As estruturas seguintes foron creadas ou alteradas. Aquí pode:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Ver o contido dunha estrutura premendo o seu nome"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Mude calqueraa destas opcións premendo a ligazón \"Opcións\" correspondente"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Modificar a súa estrutura seguindo a ligazón \"Estrutura\""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Ir á base de datos"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "opcións"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Ir á táboa"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Ir á vista"
+
#: libraries/import/ods.php:28
#, fuzzy
#| msgid "Import percentages as proper decimals (12.00% to .12)"
@@ -6799,6 +6647,42 @@ msgstr ""
"O ficheiro XML especificado estaba estragado ou incompleto. Corrixa o "
"problema e ténteo de novo."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Non se definiu ningún índice"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Único"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Empaquetado"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinalidade"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Eliminouse a chave primaria"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Eliminouse o índice %s"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Parece que os índice %1$s e %2$s son iguais e posibelmente poderíase "
+"eliminar un deles"
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6811,6 +6695,30 @@ msgstr "Ningunha"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, fuzzy, php-format
+#| msgid "%1$d row(s) affected."
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d fileira(s) afectada(s)."
+msgstr[1] "%1$d fileira(s) afectada(s)."
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "%1$d row(s) deleted."
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d fileira(s) eliminada(s)."
+msgstr[1] "%1$d fileira(s) eliminada(s)."
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "%1$d row(s) inserted."
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d fileira(s) inserida(s)."
+msgstr[1] "%1$d fileira(s) inserida(s)."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -7056,6 +6964,24 @@ msgstr "Personalizar a moldura de navegación"
msgid "This format has no options"
msgstr "Este formato non ten opcións"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Could not save recent table"
+msgstr "Non se puido cargar ou gravar a configuración"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Contar as táboas"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Non hai ningún servidor configurado"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "non conforme"
@@ -7455,63 +7381,6 @@ msgstr "Diferenza"
msgid "Target database"
msgstr "Base de datos de destino"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Executar procura/s SQL no servidor %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Efectuar unha procura SQL na base de datos %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Limpar"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Nomes das columnas"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Gardar esta procura de SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Permitir que calquera usuario poida acceder a este marcador"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Substituír un marcador xa existente que teña o mesmo nome"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Non escribir sobre esta procura desde fóra da xanela"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Delimitador"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Mostrar esta procura aquí outra vez "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Só visualizar"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Localización do arquivo de texto"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "directorio de recepción do servidor web"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7576,6 +7445,63 @@ msgstr "O identificador non é válido"
msgid "Unknown Punctuation String"
msgstr "Hai unha secuencia de puntuación que resulta descoñecida"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Executar procura/s SQL no servidor %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Efectuar unha procura SQL na base de datos %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Limpar"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Nomes das columnas"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Gardar esta procura de SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Permitir que calquera usuario poida acceder a este marcador"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Substituír un marcador xa existente que teña o mesmo nome"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Non escribir sobre esta procura desde fóra da xanela"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Delimitador"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Mostrar esta procura aquí outra vez "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Só visualizar"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Localización do arquivo de texto"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "directorio de recepción do servidor web"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7585,6 +7511,50 @@ msgstr ""
"Non foi posíbel iniciar o comprobador de SQL. Comprobe que ten instalados "
"todos os engadidos de php tal e como se describe na %sdocumentación%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Non se conta con información de estado detallada sobre este motor de "
+"almacenamento."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s está dispoñíbel neste servidor de MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s foi desactivado neste servidor de MySQL."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Este servidor de MySQL non acepta o motor de almacenamento %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "A base de datos non é válida"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Non se admite este nome de táboa."
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Houbo un erro ao mudarlle o nome á táboa %1$s para %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "A táboa %s chámase agora %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Parece ser que a táboa está baleira!"
@@ -7716,6 +7686,38 @@ msgstr "Definición da PARTICIÓN"
msgid "+ Add a new value"
msgstr "Engadir un servidor novo"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Non hai un camiño válido de imaxe para o tema %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Non se dispón de previsualización."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "cólleo"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Non se atopou o tema por omisión %s!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Non se atopou o tema %s!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Non se atopou o camiño do tema para o tema %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8112,8 +8114,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
-"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na "
-"%sdocumentation%s."
+"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na %"
+"sdocumentation%s."
#: navigation.php:213 server_databases.php:281 server_synchronize.php:1202
msgid "No databases"
@@ -8863,8 +8865,8 @@ msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os 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 "
@@ -10519,9 +10521,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
-#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
-#| "[/kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
+#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
+#| "kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
diff --git a/po/he.po b/po/he.po
index 9d00c9d8c8..8586225464 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-03-02 20:17+0200\n"
"Last-Translator: \n"
"Language-Team: hebrew \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: Pootle 2.0.5\n"
@@ -45,10 +45,10 @@ msgstr "חיפוש"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -61,18 +61,18 @@ msgstr "חיפוש"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "סע"
@@ -127,9 +127,9 @@ msgstr "הערה על מאגר הנתונים: "
msgid "Table comments"
msgstr "הערות טבלה"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -140,12 +140,12 @@ msgstr "הערות טבלה"
msgid "Column"
msgstr "שמות עמודה"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -155,9 +155,9 @@ msgstr "שמות עמודה"
msgid "Type"
msgstr "סוג"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -195,12 +195,13 @@ msgstr "קישורים אל"
msgid "Comments"
msgstr "הערות"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -211,17 +212,17 @@ msgstr "הערות"
msgid "No"
msgstr "לא"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -332,8 +333,8 @@ msgstr "הוספת הגבלות"
msgid "Switch to copied database"
msgstr "מעבר למאגר נתונים שהועתק"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -506,8 +507,8 @@ msgstr ""
msgid "Submit Query"
msgstr "שליחת שאילתה"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -608,7 +609,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "גישה נדתחה"
@@ -735,8 +736,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -755,7 +756,7 @@ msgstr "יחסים"
msgid "Sum"
msgstr "סכום"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s הוא מנוע האחסון ברירת המחדשל של שרת MySQL זה."
@@ -804,8 +805,8 @@ msgstr "תצוגת הדפסה"
msgid "Empty"
msgstr "ריקון"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -883,9 +884,9 @@ msgstr ""
msgid "Status"
msgstr "מצב"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -981,8 +982,8 @@ msgstr "הוצאה נשמרה אל קובץ %s."
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1159,11 +1160,11 @@ msgstr "הסרת משתמשים שנבחרו"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "עריכה"
@@ -1788,221 +1789,12 @@ msgstr "בשימוש"
msgid "Second"
msgstr "לשנייה"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr ""
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-#, fuzzy
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "יכול להיות הערכה. ראה FAQ 3.11"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "אין אינדקסים מוגדרים!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "אינדקסים"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "ייחודי"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "מספור"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "הערות"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "המפתח הראשי הוסר"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "אינדקס %s הוסר"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "מאגרי נתונים"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "שגיאה"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "לא נבחרו שורות"
-msgstr[1] "לא נבחרו שורות"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "לא נבחרו שורות"
-msgstr[1] "לא נבחרו שורות"
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "אין טבלאות"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "אין מידע מצב מפורט על מנוע אחסון זה."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s זמין על שרת MySQL זה."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s מובטל על שרת MySQL זה."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "שרת MySQL לא תומך במנוע אחסון %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "טבלה %s שונתה אל %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "קח זאת"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "חיבור נכשל: הגדרות לא תקינות."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "ברוך הבא אל %s"
@@ -2010,8 +1802,8 @@ msgstr "ברוך הבא אל %s"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
@@ -2025,56 +1817,56 @@ msgstr ""
"כתובת השרת, שם משתמש והסיסמא בקובץ config.inc.php ולוודא כי הם תואמים למידע "
"שקיבלת ע\"י אחראי השרת של MySQL."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "כניסה"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "תיעוד phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "שרת"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "שם משתמש:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "סיסמא:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "בחירת שרת"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "עוגיות (Cookies) חייבות לפעול מנקודה זאת."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "נכשל בכניסה לשרת MySQL"
@@ -2115,6 +1907,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "קידוד חיבור MySQL"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "שגיאה"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2167,6 +1967,11 @@ msgstr "טבלאות"
msgid "Data"
msgstr "נתונים"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "אינדקסים"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2196,13 +2001,13 @@ msgid "Check Privileges"
msgstr "בדיקת הרשאות"
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr ""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2448,83 +2253,8 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr ""
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "מבנה"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "מבנה ומידע"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "השלם הכנסות"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "הכנסות מורחבות"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
+#: libraries/Config.class.php:1190
+msgid "Font size"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -3195,6 +2925,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "מאגרי נתונים"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4728,6 +4464,85 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr ""
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "מבנה"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "מבנה ומידע"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "השלם הכנסות"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "הכנסות מורחבות"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4795,6 +4610,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "הוספת משתמש חדש"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "השרת אינו מגיב"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4867,9 +4699,9 @@ msgstr "אורך/ערכים*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4929,6 +4761,12 @@ msgstr "סוג שאילתה"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "הערות"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4989,23 +4827,6 @@ msgid ""
"3.11[/a]"
msgstr "יכול להיות הערכה. ראה FAQ 3.11"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "השרת אינו מגיב"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5169,8 +4990,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:275
@@ -5897,8 +5718,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6213,6 +6034,43 @@ msgstr ""
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+#, fuzzy
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "יכול להיות הערכה. ראה FAQ 3.11"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6230,41 +6088,6 @@ msgstr "תוצאת SQL"
msgid "Generated by"
msgstr "נוצר ע\"י"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "אין מאגרי נתונים"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6326,6 +6149,41 @@ msgstr "שמות עמודה"
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "אין מאגרי נתונים"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6350,6 +6208,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "אין אינדקסים מוגדרים!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "ייחודי"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "מספור"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "המפתח הראשי הוסר"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "אינדקס %s הוסר"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6362,6 +6254,29 @@ msgstr "ללא"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "לא נבחרו שורות"
+msgstr[1] "לא נבחרו שורות"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "לא נבחרו שורות"
+msgstr[1] "לא נבחרו שורות"
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6606,6 +6521,19 @@ msgstr ""
msgid "This format has no options"
msgstr "לתבנית זאת אין אפשרויות"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "אין טבלאות"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "לא בסדר"
@@ -6994,6 +6922,57 @@ msgstr ""
msgid "Target database"
msgstr "חפש במסד הנתונים"
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr "התחלת חיתוך"
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr "END CUT"
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr "התחלת RAW"
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr "END RAW"
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sql_query_form.lib.php:223
#, fuzzy, php-format
msgid "Run SQL query/queries on server %s"
@@ -7053,57 +7032,6 @@ msgstr "מיקום של קובץ טקסט"
msgid "web server upload directory"
msgstr "שמירת שרת בתוך תיקיית %s"
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr "התחלת חיתוך"
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr "END CUT"
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr "התחלת RAW"
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr "END RAW"
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7111,6 +7039,48 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "אין מידע מצב מפורט על מנוע אחסון זה."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s זמין על שרת MySQL זה."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s מובטל על שרת MySQL זה."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "שרת MySQL לא תומך במנוע אחסון %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "טבלה %s שונתה אל %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7239,6 +7209,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "הוספת משתמש חדש"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "קח זאת"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8262,8 +8264,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. התוכן של "
"הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן "
diff --git a/po/hi.po b/po/hi.po
index c981fe97bb..7537d0a1f1 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-05-06 09:13+0200\n"
"Last-Translator: \n"
"Language-Team: hindi \n"
-"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: hi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -47,10 +47,10 @@ msgstr "खोजें"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "खोजें"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "आगे"
@@ -131,9 +131,9 @@ msgstr "डाटाबेस टिप्पणि: "
msgid "Table comments"
msgstr " टेबल टिप्पणि:"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr " टेबल टिप्पणि:"
msgid "Column"
msgstr "कोलम"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "कोलम"
msgid "Type"
msgstr "टाइप"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,12 +197,13 @@ msgstr "के लिए लिंक"
msgid "Comments"
msgstr "टिप्पणी"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -213,17 +214,17 @@ msgstr "टिप्पणी"
msgid "No"
msgstr "नहीं"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -331,8 +332,8 @@ msgstr "शर्तें जोडें"
msgid "Switch to copied database"
msgstr "नक़ल किये गए डाटाबेस पर जायें"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -347,8 +348,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए "
-"%shere%s पर क्लिक करें."
+"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए %"
+"shere%s पर क्लिक करें."
#: db_operations.php:600
msgid "Edit or export relational schema"
@@ -496,8 +497,8 @@ msgstr "डेटाबेस %s पर SQL क्वरी:"
msgid "Submit Query"
msgstr "क्वरी प्रस्तुत करें"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -605,7 +606,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "प्रवेश निषेध"
@@ -726,8 +727,8 @@ msgstr "ट्रैकिंग सक्रिय नहीं है."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 पढ़ें."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -745,7 +746,7 @@ msgstr "प्रतिकृति"
msgid "Sum"
msgstr "जोड"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s इस MySQL सर्वर पर डिफ़ॉल्ट भंडारण इंजन है."
@@ -794,8 +795,8 @@ msgstr "छापने वाला द्रश्य."
msgid "Empty"
msgstr "खाली करें"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -874,9 +875,9 @@ msgstr "अद्यतन"
msgid "Status"
msgstr "स्थिति"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -969,8 +970,8 @@ msgstr "डंप को %s फाइल में सेव किया गय
#: import.php:58
#, 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."
msgstr ""
"आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s "
"दोकुमेंताशन%s पढ़ें."
@@ -1152,11 +1153,11 @@ msgstr "चयनित यूसर को हटायें"
msgid "Close"
msgstr "बंद"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "सम्पादन"
@@ -1708,224 +1709,12 @@ msgstr "मिनट"
msgid "Second"
msgstr "सेकंड"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "फ़ॉन्ट का आकार"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "अपलोड की गई फ़ाइल php.ini में upload_max_filesize निर्देश से अधिक है."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr "अपलोड की गई फ़ाइल, HTML के रूप में निर्दिष्ट MAX_FILE_SIZE की सीमा से अधिक है."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "अपलोड की गई फ़ाइल केवल आंशिक रूप से अपलोड की गयी है."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "एक अस्थायी फ़ोल्डर गुम है."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "डिस्क में फ़ाइल लिखने में असफल"
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "फ़ाइल एक्सटेंशन द्वारा अपलोड रोका गया है."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "फ़ाइल अपलोड करने में अज्ञात त्रुटि."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [a@. \"Documentation.html # "
-"faq1_1 @ प्रलेखन] अकसर किये गए सवाल 1,11 [/ a] देखें."
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "परिभाषित सूचकांक नहीं पाए गए!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "सूचकांक"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "अद्वितीय"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "जमा"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "प्रमुखता"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "टिप्पणी"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "प्राथमिक कुंजी गिरा दी गयी है"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "सूचकांक %s गिरा दिया गया है"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr "सूचकांक %1s और %2s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr " डाटाबेस"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "त्रुटि"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "एकवचन %1$d रोव प्रभावित"
-msgstr[1] "बहुवचन%1$d रोवस प्रभावित"
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "एकवचन%1$d रोव नष्ट"
-msgstr[1] "बहुवचन%1$d रोवस नष्ट"
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "एकवचन%1$d रोव डाला"
-msgstr[1] "बहुवचन%1$d रोवस डाला"
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not save configuration"
-msgid "Could not save recent table"
-msgstr "विन्यास सहेज नहीं सकते"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "टेबल गणना"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "कोई कॉन्फ़िगर सर्वर मौजूद नहीं है"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "इस भंडारण इंजन स्थिति के लिए कोई विस्तृत जानकारी उपलब्ध नहीं है."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s इस MySQL सर्वर पर उपलब्ध है."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s इस MySQL सर्वर के लिए निष्क्रिय कर दिया गया है."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "यह MySQL सर्वर %s भंडारण इंजन का समर्थन नहीं करता है."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "अमान्य डेटाबेस"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "अवैध टेबल नाम"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "टेबल का नाम %1$s से %2$s में बदलने में त्रुटि."
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "टेबल %s का नाम बदल कर %s रखा गया है."
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "विषय %s के लिए कोई वैध छवि पथ नहीं पाया है!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "पूर्वावलोकन उपलब्ध नहीं."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "इसे ले लो"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "डिफ़ॉल्ट विषयवस्तु %s नहीं मिला है!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "विषयवस्तु %s नहीं मिला है!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "विषय %s के लिए थीम पथ नहीं मिला है!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "अमान्य सेटिंग्स: कनेक्ट नहीं कर सकते हैं"
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr " %s मे स्वागत है"
@@ -1933,11 +1722,11 @@ msgstr " %s मे स्वागत है"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
msgid ""
@@ -1950,56 +1739,56 @@ msgstr ""
"अपने मेजबान विन्यास में, यूसर नाम और पासवर्ड की जाँच करें और इत्मीनान कर ले की ये "
"उपयोगकरता नाम और पासवर्ड MySQL सर्वर के व्यवस्थापक द्वारा दी गई जानकारी के अनुरूप हैं."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "लोगिन"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin दस्तावेज़ीकरण"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "आप होस्टनाम / आईपी पता और पोर्ट स्पचे से अलग कर के दाल सकते हैं."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "सर्वर:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "उपयोक्तानाम:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "पासव्रड:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "सर्वर चुनिये"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "कुकीज़ इस बिंदु अतीत सक्षम होना चाहिए."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "पासवर्ड के बिना लॉग इन विन्यास से मना किया गया है (AllowNoPassword देखें)."
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "%s सेकंड के भीतर कोई गतिविधि नहीं है. कृपया फिर से लोगिन करें."
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "MySQL सर्वर में प्रवेश नहीं कर सकते"
@@ -2040,6 +1829,14 @@ msgstr "PBMS त्रुटि"
msgid "PBMS connection failed:"
msgstr "PBMS कनेक्शन विफल"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "त्रुटि"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS प्राप्त जानकारी BLOB विफल"
@@ -2092,6 +1889,11 @@ msgstr "टेबल"
msgid "Data"
msgstr "डाटा"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "सूचकांक"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2121,13 +1923,13 @@ msgstr "प्रिविलेज चेक करें"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "विन्यास सहेज नहीं सकते"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2371,79 +2173,9 @@ msgstr "अपलोड करने के लिए फाइल उपलब
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "दोनों"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-#, fuzzy
-#| msgid "Height"
-msgid "Right"
-msgstr "ऊँचाई"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "खोले"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "बंद"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "संरचना"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "डेटा"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "संरचना और डेटा"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "जल्दी - कॉन्फ़िगर करने के लिए केवल न्यूनतम विकल्पों को प्रदर्शित करें"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "कस्टम - कॉन्फ़िगर करने के लिए सभी विकल्पों को प्रदर्शित करें"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "कस्टम - उपरोक्त की तरह लेकिन जल्दी / कस्टम विकल्प के बिना"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "पूरा इनसर्टस"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "विस्तृत इनसर्टस"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "ऊपर के दोनों"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "उपरोक्त में से कोई भी नहीं"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "फ़ॉन्ट का आकार"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3088,6 +2820,12 @@ msgstr "आयात और निर्यात निर्देशिका
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr " डाटाबेस"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "डेटाबेस प्रदर्शन विकल्प"
@@ -4613,6 +4351,80 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "गलत IP पता: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "दोनों"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+#, fuzzy
+#| msgid "Height"
+msgid "Right"
+msgstr "ऊँचाई"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "खोले"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "बंद"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "संरचना"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "डेटा"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "संरचना और डेटा"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "जल्दी - कॉन्फ़िगर करने के लिए केवल न्यूनतम विकल्पों को प्रदर्शित करें"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "कस्टम - कॉन्फ़िगर करने के लिए सभी विकल्पों को प्रदर्शित करें"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "कस्टम - उपरोक्त की तरह लेकिन जल्दी / कस्टम विकल्प के बिना"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "पूरा इनसर्टस"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "विस्तृत इनसर्टस"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "ऊपर के दोनों"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "उपरोक्त में से कोई भी नहीं"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4683,6 +4495,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "एक नया सर्वर जोडें"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "सर्वर जवाब नहीं दे रहा"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "विवरण..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4757,9 +4586,9 @@ msgstr "लंबाई/अर्थ*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4818,6 +4647,11 @@ msgstr "सुरक्षा"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "टिप्पणी"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4883,23 +4717,6 @@ msgid ""
msgstr ""
"शायद अनुमानित हैं. [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a] देखें"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "सर्वर जवाब नहीं दे रहा"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "विवरण..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5040,8 +4857,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:275
@@ -5747,8 +5564,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6051,6 +5868,44 @@ msgstr "दृश्य"
msgid "Export contents"
msgstr "निर्यात सामग्री"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "अपलोड की गई फ़ाइल php.ini में upload_max_filesize निर्देश से अधिक है."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr "अपलोड की गई फ़ाइल, HTML के रूप में निर्दिष्ट MAX_FILE_SIZE की सीमा से अधिक है."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "अपलोड की गई फ़ाइल केवल आंशिक रूप से अपलोड की गयी है."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "एक अस्थायी फ़ोल्डर गुम है."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "डिस्क में फ़ाइल लिखने में असफल"
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "फ़ाइल एक्सटेंशन द्वारा अपलोड रोका गया है."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "फ़ाइल अपलोड करने में अज्ञात त्रुटि."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [a@. \"Documentation.html # "
+"faq1_1 @ प्रलेखन] अकसर किये गए सवाल 1,11 [/ a] देखें."
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6070,40 +5925,6 @@ msgstr "SQLपरिणाम"
msgid "Generated by"
msgstr "द्वारा उत्पन्न"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "निम्नलिखित संरचनाओं या तो बनाया गया है या बदल दिया| यहाँ पर आप:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "संरचना की सामग्री को नाम पर क्लिक करके देखें"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "सेटिंग्स को बदलने के लिए \"विकल्प\" लिंक पर क्लिक करें"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "इसकी संरचना को संपादित करने के लिए \"संरचना\" लिंक पर क्लिक करें"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "डेटाबेस पर जायें"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "सेटिंग्स"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "टेबल पर जायें"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "दृश्य पर जायें"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6165,6 +5986,40 @@ msgstr "कोलम के नाम"
msgid "This plugin does not support compressed imports!"
msgstr "यह प्लगइन संकुचित आयात का समर्थन नहीं करता"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "निम्नलिखित संरचनाओं या तो बनाया गया है या बदल दिया| यहाँ पर आप:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "संरचना की सामग्री को नाम पर क्लिक करके देखें"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "सेटिंग्स को बदलने के लिए \"विकल्प\" लिंक पर क्लिक करें"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "इसकी संरचना को संपादित करने के लिए \"संरचना\" लिंक पर क्लिक करें"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "डेटाबेस पर जायें"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "सेटिंग्स"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "टेबल पर जायें"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "दृश्य पर जायें"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr "प्रतिशत को उचित दशमलव के रूप में आयात करें"
@@ -6187,6 +6042,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "परिभाषित सूचकांक नहीं पाए गए!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "अद्वितीय"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "जमा"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "प्रमुखता"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "प्राथमिक कुंजी गिरा दी गयी है"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "सूचकांक %s गिरा दिया गया है"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr "सूचकांक %1s और %2s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है."
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "No"
@@ -6199,6 +6088,27 @@ msgstr "कोई एन्कोडिंग नहीं"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "एकवचन %1$d रोव प्रभावित"
+msgstr[1] "बहुवचन%1$d रोवस प्रभावित"
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "एकवचन%1$d रोव नष्ट"
+msgstr[1] "बहुवचन%1$d रोवस नष्ट"
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "एकवचन%1$d रोव डाला"
+msgstr[1] "बहुवचन%1$d रोवस डाला"
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6441,6 +6351,24 @@ msgstr "नेविगेशन फ्रेम पुनः लोड"
msgid "This format has no options"
msgstr "इस प्रारूप के कोई विकल्प नहीं है"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Could not save recent table"
+msgstr "विन्यास सहेज नहीं सकते"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "टेबल गणना"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "कोई कॉन्फ़िगर सर्वर मौजूद नहीं है"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "ठीक नहीं है"
@@ -6827,6 +6755,57 @@ msgstr "अंतर"
msgid "Target database"
msgstr "लक्ष्य डेटाबेस"
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr "BEGIN कट"
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr "BEGIN रॉ"
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr "अवैध पहचानकर्ता"
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr "अज्ञात विराम स्ट्रिंग"
+
#: libraries/sql_query_form.lib.php:223
#, php-format
msgid "Run SQL query/queries on server %s"
@@ -6884,57 +6863,6 @@ msgstr "पाठ फ़ाइल का स्थान"
msgid "web server upload directory"
msgstr "वेब सर्वर अपलोड निर्देशिका"
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr "BEGIN कट"
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr "BEGIN रॉ"
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr "अवैध पहचानकर्ता"
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr "अज्ञात विराम स्ट्रिंग"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6942,6 +6870,48 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "इस भंडारण इंजन स्थिति के लिए कोई विस्तृत जानकारी उपलब्ध नहीं है."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s इस MySQL सर्वर पर उपलब्ध है."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s इस MySQL सर्वर के लिए निष्क्रिय कर दिया गया है."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "यह MySQL सर्वर %s भंडारण इंजन का समर्थन नहीं करता है."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "अमान्य डेटाबेस"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "अवैध टेबल नाम"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "टेबल का नाम %1$s से %2$s में बदलने में त्रुटि."
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "टेबल %s का नाम बदल कर %s रखा गया है."
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "टेबल खली लग रही है"
@@ -7053,6 +7023,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "नयी वलुए जोडें"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "विषय %s के लिए कोई वैध छवि पथ नहीं पाया है!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "पूर्वावलोकन उपलब्ध नहीं."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "इसे ले लो"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "डिफ़ॉल्ट विषयवस्तु %s नहीं मिला है!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "विषयवस्तु %s नहीं मिला है!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "विषय %s के लिए थीम पथ नहीं मिला है!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8054,8 +8056,8 @@ msgstr "Drop the databases that have the same names as the users."
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 ""
#: server_privileges.php:1764
diff --git a/po/hr.po b/po/hr.po
index 457cede7bc..0ed09f8f39 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-07-21 14:54+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: croatian
\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: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -49,10 +49,10 @@ msgstr "Traži"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Traži"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Kreni"
@@ -133,9 +133,9 @@ msgstr "Komentar baze podataka: "
msgid "Table comments"
msgstr "Komentari tablice"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -146,12 +146,12 @@ msgstr "Komentari tablice"
msgid "Column"
msgstr "Nazivi stupaca"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -161,9 +161,9 @@ msgstr "Nazivi stupaca"
msgid "Type"
msgstr "Vrsta"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -201,12 +201,13 @@ msgstr "Povezano s"
msgid "Comments"
msgstr "Komentari"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -217,17 +218,17 @@ msgstr "Komentari"
msgid "No"
msgstr "Ne"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -338,8 +339,8 @@ msgstr "Dodaj prisile"
msgid "Switch to copied database"
msgstr "Prebaci se na kopiranu bazu podataka"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -513,8 +514,8 @@ msgstr "SQL upit nad bazom podataka %s:"
msgid "Submit Query"
msgstr "Podnesi upit"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -621,7 +622,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Pristup odbijen"
@@ -749,8 +750,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
@@ -769,7 +770,7 @@ msgstr "Replikacija"
msgid "Sum"
msgstr "Zbroj"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s je zadani pogon pohranjivanja na ovom MySQL poslužitelju."
@@ -818,8 +819,8 @@ msgstr "Prikaz ispisa"
msgid "Empty"
msgstr "Isprazni"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -900,9 +901,9 @@ msgstr ""
msgid "Status"
msgstr "Stanje"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -1001,11 +1002,11 @@ msgstr "Izbacivanje je spremljeno u datoteku %s."
#: import.php:58
#, 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."
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:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1197,11 +1198,11 @@ msgstr "Ukloni odabrane korisnike"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Uređivanje"
@@ -1829,228 +1830,12 @@ msgstr "u upotrebi"
msgid "Second"
msgstr "po sekundi"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Veličina fonta"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Učitana datoteka nadmašuje uputu upload_max_filesize (najveća veličina "
-"datoteke) u datoteci php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Učitana datoteka nadmašuje uputu MAX_FILE_SIZE (najveća veličina datoteke), "
-"određenu u HTML obliku."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Učitana datoteka bila je djelomično učitana."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Nedostaje mapa privremene pohrane."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Zapisivanje datoteke na disk nije uspjelo."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Učitavanje datoteke prekinuto je uslijed ekstenzije."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Nepoznata pogreška tijekom učitavanja datoteke."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Pogreška tijekom premještanja učitane datoteke. Pogledajte ČPP 1.11"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Nema definiranog indeksa!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeksi"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Jedinstveno"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Pakirano"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Najvažnije"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Komentar"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primarni ključ je odbačen"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Index %s je odbačen"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Indeksi %1$s i %2$s izgledaju jednakim i jednog od njih moguće je ukloniti."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Baze podataka"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Pogreška"
-
-#: libraries/Message.class.php:260
-#, fuzzy, php-format
-#| msgid "%1$d row(s) affected."
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Zahvaćeno redaka: %1$d."
-msgstr[1] "Zahvaćeno redaka: %1$d."
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "%1$d row(s) deleted."
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Izbrisano redaka: %1$d."
-msgstr[1] "Izbrisano redaka: %1$d."
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "%1$d row(s) inserted."
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Umetnuto redaka: %1$d."
-msgstr[1] "Umetnuto redaka: %1$d."
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Nema tablica"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-msgid "There are no recent tables"
-msgstr "Provjeri tablicu"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Za ovaj pogon pohranjivanje ne postoje raspoloživi podaci."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s je raspoloživ na ovom MySQL poslužitelju."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s je onemogućen za ovaj MySQL poslužitelj."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Ovaj MySQL poslužitelj ne podržava pogon pohranjivanja %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Neispravna baza podataka"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Neispravan naziv tablice"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Pogreška tijekom preimenovanja tablice %1$s u %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tablica %s preimenovana je u %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Valjana putanja slika za temu %s nije pronađena!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Nema raspoloživog pregleda."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "Dodijeli"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Zadana tema %s nije pronađena!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s nije pronađena!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Za temu %s nije pronađena putanje tema!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Povezivanje nije moguće: neispravna postavka."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Dobro došli u %s"
@@ -2058,8 +1843,8 @@ msgstr "Dobro došli u %s"
#: libraries/auth/config.auth.lib.php:106
#, 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 je nepostojeća konfiguracijska datoteka. Za izradu možete "
"upotrijebiti naredbu %1$ssetup script%2$s"
@@ -2076,56 +1861,56 @@ msgstr ""
"računala, korisničko ime i lozinku, te provjerite da se odgovaraju podacima "
"koje vam je dao administrator MySQL poslužitelja."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Prijava"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin dokumentacija"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Poslužitelj"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Korisničko ime:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Lozinka:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Odabir poslužitelja"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Od ovog mjesta potrebno je omogućiti kolačiće."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Nije bilo nikakvih aktivnosti tijekom %s sekunda. Prijavite se ponovo."
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Prijavljivanje na MySQL poslužitelj nije moguće"
@@ -2166,6 +1951,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "MySQL uspoređivanje veza"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Pogreška"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2218,6 +2011,11 @@ msgstr "Tablice"
msgid "Data"
msgstr "Podaci"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeksi"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2250,13 +2048,13 @@ msgstr "Provjeri privilegije"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2508,86 +2306,9 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Navodnik nije zatvoren"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Strukturu"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Strukturu i podatke"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Dovrši umetanja"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Proširena umetanja"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Veličina fonta"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3261,6 +2982,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Baze podataka"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4815,6 +4542,87 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Navodnik nije zatvoren"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Strukturu"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Strukturu i podatke"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Dovrši umetanja"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Proširena umetanja"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4881,6 +4689,26 @@ msgstr ""
msgid "Add a new Event"
msgstr "Dodaj novog korisnika"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Povezivanje kontrolnih korisnika na način kako je definirano u vašoj "
+"konfiguraciji nije uspjelo."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Poslužitelj ne odgovara"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+"(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Detalji..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4955,9 +4783,9 @@ msgstr "Duljina/Vrijednosti"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -5014,6 +4842,11 @@ msgstr "Vrsta upita"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Komentar"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5077,26 +4910,6 @@ msgid ""
"3.11[/a]"
msgstr "Može biti približno. Pogledajte ČPP 3.11"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Povezivanje kontrolnih korisnika na način kako je definirano u vašoj "
-"konfiguraciji nije uspjelo."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Poslužitelj ne odgovara"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-"(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Detalji..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5265,8 +5078,8 @@ msgstr ""
#| "happen: %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 "
@@ -6071,8 +5884,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6386,6 +6199,46 @@ msgstr "Prikaz"
msgid "Export contents"
msgstr "Vrsta izvoza"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Učitana datoteka nadmašuje uputu upload_max_filesize (najveća veličina "
+"datoteke) u datoteci php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Učitana datoteka nadmašuje uputu MAX_FILE_SIZE (najveća veličina datoteke), "
+"određenu u HTML obliku."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Učitana datoteka bila je djelomično učitana."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Nedostaje mapa privremene pohrane."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Zapisivanje datoteke na disk nije uspjelo."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Učitavanje datoteke prekinuto je uslijed ekstenzije."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Nepoznata pogreška tijekom učitavanja datoteke."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Pogreška tijekom premještanja učitane datoteke. Pogledajte ČPP 1.11"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6403,42 +6256,6 @@ msgstr "SQL rezultat"
msgid "Generated by"
msgstr "Generirano s"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Nema baza podataka"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "Nema baza podataka"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6501,6 +6318,42 @@ msgstr "Nazivi stupaca"
msgid "This plugin does not support compressed imports!"
msgstr "Ovaj dodatak ne podržava uvoz komprimiranih datoteka!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Nema baza podataka"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "Nema baza podataka"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6525,6 +6378,41 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Nema definiranog indeksa!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Jedinstveno"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Pakirano"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Najvažnije"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primarni ključ je odbačen"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Index %s je odbačen"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Indeksi %1$s i %2$s izgledaju jednakim i jednog od njih moguće je ukloniti."
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6537,6 +6425,30 @@ msgstr "bez kompresije"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, fuzzy, php-format
+#| msgid "%1$d row(s) affected."
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Zahvaćeno redaka: %1$d."
+msgstr[1] "Zahvaćeno redaka: %1$d."
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "%1$d row(s) deleted."
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Izbrisano redaka: %1$d."
+msgstr[1] "Izbrisano redaka: %1$d."
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "%1$d row(s) inserted."
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Umetnuto redaka: %1$d."
+msgstr[1] "Umetnuto redaka: %1$d."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6779,6 +6691,22 @@ msgstr ""
msgid "This format has no options"
msgstr "Ovaj oblik nema raspoložive opcije"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Nema tablica"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+msgid "There are no recent tables"
+msgstr "Provjeri tablicu"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "nije OK"
@@ -7172,64 +7100,6 @@ msgstr ""
msgid "Target database"
msgstr "Traži u bazi podataka"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Pokreni SQL upit na poslužitelju %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Pokreni SQL upit na bazi podataka %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Kalendar"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Nazivi stupaca"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Favoriziraj ovaj SQL upit"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Neka svi korisnici imaju pristup ovom favoritu"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Zamijeni postojećim favoritom istog naziva"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Ne prepisuj ovaj upit iz vanjskog prozora"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Razgraničavanje"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Ovaj upit ponovno prikaži ovdje"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Samo prikaz"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Lokacija tekstualne datoteke"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "mapa učitavanja web poslužitelja"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7292,6 +7162,64 @@ msgstr "Neispravna ID oznaka"
msgid "Unknown Punctuation String"
msgstr "Nepoznat niz interpunkcija"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Pokreni SQL upit na poslužitelju %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Pokreni SQL upit na bazi podataka %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Kalendar"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Nazivi stupaca"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Favoriziraj ovaj SQL upit"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Neka svi korisnici imaju pristup ovom favoritu"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Zamijeni postojećim favoritom istog naziva"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Ne prepisuj ovaj upit iz vanjskog prozora"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Razgraničavanje"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Ovaj upit ponovno prikaži ovdje"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Samo prikaz"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Lokacija tekstualne datoteke"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "mapa učitavanja web poslužitelja"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7301,6 +7229,48 @@ msgstr ""
"SQL validator nije bilo moguće pokrenuti. Provjerite jeste li instalirali "
"potrebna PHP proširenja, na način opisan u %sdokumentaciji%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Za ovaj pogon pohranjivanje ne postoje raspoloživi podaci."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s je raspoloživ na ovom MySQL poslužitelju."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s je onemogućen za ovaj MySQL poslužitelj."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Ovaj MySQL poslužitelj ne podržava pogon pohranjivanja %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Neispravna baza podataka"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Neispravan naziv tablice"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Pogreška tijekom preimenovanja tablice %1$s u %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tablica %s preimenovana je u %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tablica izgleda praznom!"
@@ -7431,6 +7401,38 @@ msgstr "Definicija PARTICIJE"
msgid "+ Add a new value"
msgstr "Dodaj novog korisnika"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Valjana putanja slika za temu %s nije pronađena!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Nema raspoloživog pregleda."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "Dodijeli"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Zadana tema %s nije pronađena!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s nije pronađena!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Za temu %s nije pronađena putanje tema!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8558,8 +8560,8 @@ msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike."
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 "
@@ -11129,8 +11131,8 @@ msgstr "Preimenuj prikaz u"
#~ "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 "
diff --git a/po/hu.po b/po/hu.po
index a3fb33c149..ef3f1379b9 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-05-27 18:52+0200\n"
"Last-Translator: \n"
"Language-Team: hungarian \n"
-"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -48,10 +48,10 @@ msgstr "Keresés"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Keresés"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Indítás"
@@ -132,9 +132,9 @@ msgstr "Megjegyzés az adatbázishoz: "
msgid "Table comments"
msgstr "Tábla megjegyzése"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Tábla megjegyzése"
msgid "Column"
msgstr "Oszlop"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Oszlop"
msgid "Type"
msgstr "Típus"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "Hivatkozások:"
msgid "Comments"
msgstr "Megjegyzések"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "Megjegyzések"
msgid "No"
msgstr "Nem"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -332,8 +333,8 @@ msgstr "Megszorítás hozzáadása"
msgid "Switch to copied database"
msgstr "A másolt adatbázisra váltás"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -497,8 +498,8 @@ msgstr "SQL-lekérdezés a(z) %s adatbázison:"
msgid "Submit Query"
msgstr "Lekérdezés indítása"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -606,7 +607,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "A hozzáférés megtagadva"
@@ -727,11 +728,11 @@ msgstr "Nyomkövetés inaktív."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -748,7 +749,7 @@ msgstr "Többszörözés"
msgid "Sum"
msgstr "Összeg"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "Ezen a MySQL szerveren a(z) %s az alapértelmezett tárolómotor."
@@ -797,8 +798,8 @@ msgstr "Nyomtatási nézet"
msgid "Empty"
msgstr "Kiürítés"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -871,9 +872,9 @@ msgstr "frissítve"
msgid "Status"
msgstr "Állapot"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -968,11 +969,11 @@ msgstr "A kiíratás mentése a(z) %s fájlba megtörtént."
#: import.php:58
#, 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."
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:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1156,11 +1157,11 @@ msgstr "A kijelölt felhasználók törlése"
msgid "Close"
msgstr "Bezárás"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Módosítás"
@@ -1714,229 +1715,12 @@ msgstr "Perc"
msgid "Second"
msgstr "másodperc"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Betűméret"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"A feltöltött fájl mérete túllépi a php.ini fájlban megadott "
-"upload_max_filesize utasítást."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"A feltöltött fájl mérete túllépi a HTML űrlapban megadott MAX_FILE_SIZE "
-"utasítást."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "A feltöltött fájl csak részben került feltöltésre."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Hiányzik egy ideiglenes mappa."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Nem sikerült lemezre írni a fájlt."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "A fájlfeltöltés kiterjesztés alapján leállt."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Ismeretlen hiba a fájlfeltöltésben."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Hiba történt a feltöltött fájl áthelyezésekor, lásd: GYIK 1.11"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Nincs meghatározott index!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indexek"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Egyedi"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Csomagolt"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Számosság"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Megjegyzés"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Az elsődleges kulcs eldobása megtörtént"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "A(z) %s index eldobása megtörtént"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"A(z) %1$s és a(z) %2$s egyenlőnek tűnik, és egyikük valószínűleg "
-"eltávolítható."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Adatbázisok"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Hiba"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d sor érintett."
-msgstr[1] "%1$d sor érintett."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "A(z) %1$d sor törlése megtörtént."
-msgstr[1] "A(z) %1$d sor törlése megtörtént."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "A(z) %1$d sor beszúrása megtörtént."
-msgstr[1] "A(z) %1$d sor beszúrása megtörtént."
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Cannot load or save configuration"
-msgid "Could not save recent table"
-msgstr "A beállítások nem tölthetők be vagy menthetők"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Táblák megszámolása"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Nincsenek konfigurált szerverek"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Erről a tárolómotorról részletes állapot-információ nem áll rendelkezésre."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "A(z) %s motor elérhető ezen a MySQL szerveren."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s letiltott ezen a MySQL szerveren."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Ez a MySQL szerver nem támogatja a(z) %s tárolómotort."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Érvénytelen adatbázis"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Érvénytelen táblanév"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Hiba történt a(z) %1$s tábla %2$s névre történő átnevezésekor"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "A(z) %s tábla átnevezése %s névre megtörtént"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Nincs érvényes kép elérési útja a(z) %s témának!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Nincs előnézet."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "csináld"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "A(z) %s alapértelmezett téma nem található!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Nem található a(z) %s téma!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Nem található a(z) %s téma téma elérési útja!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Nem lehet csatlakozni: érvénytelenek a beállítások."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Üdvözli a %s"
@@ -1944,11 +1728,11 @@ msgstr "Üdvözli a %s"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
msgid ""
@@ -1962,58 +1746,58 @@ msgstr ""
"a config.inc.php fájlban, s győződjön meg róla, hogy ezek megfelelnek-e a "
"MySQL szerver adminisztrátorától kapott információknak."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Belépés"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin dokumentáció"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
"Az állomásnevet/IP-címet és a port számát szóközzel elválasztva írhatja be."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Szerver"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Felhasználónév:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Jelszó:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Szerver választása"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Ettől a ponttól engedélyeznie kell a cookie-k fogadását."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"A konfiguráció tiltja a jelszó nélküli bejelentkezést (lásd AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Nem volt tevékenység %s másodperce; jelentkezzen be újra"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Nem lehet bejelentkezni a MySQL szerverre"
@@ -2054,6 +1838,14 @@ msgstr "PBMS hiba"
msgid "PBMS connection failed:"
msgstr "PBMS kapcsolat sikertelen."
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Hiba"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS BLOB infó beszerzése sikertelen:"
@@ -2106,6 +1898,11 @@ msgstr "Táblák"
msgid "Data"
msgstr "Adatok"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indexek"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2135,13 +1932,13 @@ msgstr "Jogok ellenőrzése"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Cannot load or save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "A beállítások nem tölthetők be vagy menthetők"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2387,79 +2184,9 @@ msgstr "Nincsenek feltöltendő fájlok"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Mind"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-#, fuzzy
-#| msgid "Height"
-msgid "Right"
-msgstr "Magasság"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Nyitott"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Zárt"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "szerkezet"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "adat"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "szerkezet és adatok"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Gyors - csak a minimális beállítási lehetőségeket mutatja"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Egyéni - az összes beállítási lehetőségeket mutatja"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Egyéni - mint fentebb, de gyors/egyéni választási lehetőség nélkül"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "teljes beillesztések"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "kiterjesztett beillesztések"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "a fentiekből mindkettő"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "a fentiekből egyik sem"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Betűméret"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3121,6 +2848,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Adatbázisok"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Az adatbázisok megjelenítésének beállításai"
@@ -4772,6 +4505,80 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "A következő IP-cím hibás: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Mind"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+#, fuzzy
+#| msgid "Height"
+msgid "Right"
+msgstr "Magasság"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Nyitott"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Zárt"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "szerkezet"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "adat"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "szerkezet és adatok"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Gyors - csak a minimális beállítási lehetőségeket mutatja"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Egyéni - az összes beállítási lehetőségeket mutatja"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Egyéni - mint fentebb, de gyors/egyéni választási lehetőség nélkül"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "teljes beillesztések"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "kiterjesztett beillesztések"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "a fentiekből mindkettő"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "a fentiekből egyik sem"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4840,6 +4647,27 @@ msgstr ""
msgid "Add a new Event"
msgstr "Új szerver hozzáadása"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+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 "
+"sikerült."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "A szerver nem válaszol"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+"(vagy nem megfelelően állították be a helyi MySQL szerver "
+"szoftvercsatornáját)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Részletek..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4914,9 +4742,9 @@ msgstr "Hossz/Érték*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4973,6 +4801,11 @@ msgstr "Biztonság"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Megjegyzés"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5037,27 +4870,6 @@ msgid ""
"3.11[/a]"
msgstr "Becsült érték lehet. Lásd: GYIK 3.11"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-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 "
-"sikerült."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "A szerver nem válaszol"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-"(vagy nem megfelelően állították be a helyi MySQL szerver "
-"szoftvercsatornáját)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Részletek..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5202,8 +5014,8 @@ msgstr ", @TABLE@ lesz a tábla neve"
#| "happen: %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 ""
"Ennek az értéknek az értelmezése az %1$sstrftime%2$s használatával történik, "
"vagyis időformázó karakterláncokat használhat. A következő átalakításokra "
@@ -5996,8 +5808,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6314,6 +6126,46 @@ msgstr "Nézet"
msgid "Export contents"
msgstr "Exportálás alapértelmezései"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"A feltöltött fájl mérete túllépi a php.ini fájlban megadott "
+"upload_max_filesize utasítást."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"A feltöltött fájl mérete túllépi a HTML űrlapban megadott MAX_FILE_SIZE "
+"utasítást."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "A feltöltött fájl csak részben került feltöltésre."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Hiányzik egy ideiglenes mappa."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Nem sikerült lemezre írni a fájlt."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "A fájlfeltöltés kiterjesztés alapján leállt."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Ismeretlen hiba a fájlfeltöltésben."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Hiba történt a feltöltött fájl áthelyezésekor, lásd: GYIK 1.11"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6333,41 +6185,6 @@ msgstr "SQL-eredmény"
msgid "Generated by"
msgstr "Készítette"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Nincs adatbázis"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6430,6 +6247,41 @@ msgstr "Oszlopnevek"
msgid "This plugin does not support compressed imports!"
msgstr "Ez a beépülő modul nem támogatja a tömörített importálásokat!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Nincs adatbázis"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6456,6 +6308,42 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Nincs meghatározott index!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Egyedi"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Csomagolt"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Számosság"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Az elsődleges kulcs eldobása megtörtént"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "A(z) %s index eldobása megtörtént"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"A(z) %1$s és a(z) %2$s egyenlőnek tűnik, és egyikük valószínűleg "
+"eltávolítható."
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6468,6 +6356,27 @@ msgstr "Nincs"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d sor érintett."
+msgstr[1] "%1$d sor érintett."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "A(z) %1$d sor törlése megtörtént."
+msgstr[1] "A(z) %1$d sor törlése megtörtént."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "A(z) %1$d sor beszúrása megtörtént."
+msgstr[1] "A(z) %1$d sor beszúrása megtörtént."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6711,6 +6620,24 @@ msgstr "A navigációs keret testreszabása"
msgid "This format has no options"
msgstr "Ennek a formátumnak nincsenek beállításai"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Could not save recent table"
+msgstr "A beállítások nem tölthetők be vagy menthetők"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Táblák megszámolása"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Nincsenek konfigurált szerverek"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Nincs rendben"
@@ -7107,65 +7034,6 @@ msgstr ""
msgid "Target database"
msgstr "Keresés az adatbázisban"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "A(z) %s szerveren lefuttatandó SQL lekérdezés(ek)"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "SQL lekérdezés(ek) futtatása a(z) %s adatbázison"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Törlés"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Oszlopnevek"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr ""
-"A hozzáférés ehhez a könyvjelzőhöz az összes felhasználó számára "
-"engedélyezett"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Az ugyanazon nevű könyvjelző kicserélése"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Nem írja felül ezt a lekérdezést az ablakon kívülről"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Elválasztó"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " A fenti lekérdezés megjelenítése itt újra "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Csak megtekinthető"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "A szövegfájl helye"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "webszerver feltöltési könyvtár"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7230,16 +7098,118 @@ msgstr "Érvénytelen azonosító"
msgid "Unknown Punctuation String"
msgstr "Ismeretlen írásjeleket tartalmazó karakterlánc"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "A(z) %s szerveren lefuttatandó SQL lekérdezés(ek)"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "SQL lekérdezés(ek) futtatása a(z) %s adatbázison"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Törlés"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Oszlopnevek"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr ""
+"A hozzáférés ehhez a könyvjelzőhöz az összes felhasználó számára "
+"engedélyezett"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Az ugyanazon nevű könyvjelző kicserélése"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Nem írja felül ezt a lekérdezést az ablakon kívülről"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Elválasztó"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " A fenti lekérdezés megjelenítése itt újra "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Csak megtekinthető"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "A szövegfájl helye"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "webszerver feltöltési könyvtár"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
"The SQL validator could not be initialized. Please check if you have "
"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."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Erről a tárolómotorról részletes állapot-információ nem áll rendelkezésre."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "A(z) %s motor elérhető ezen a MySQL szerveren."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s letiltott ezen a MySQL szerveren."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Ez a MySQL szerver nem támogatja a(z) %s tárolómotort."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Érvénytelen adatbázis"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Érvénytelen táblanév"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Hiba történt a(z) %1$s tábla %2$s névre történő átnevezésekor"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "A(z) %s tábla átnevezése %s névre megtörtént"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Üresnek tűnik a tábla!"
@@ -7371,6 +7341,38 @@ msgstr "PARTITION definíció"
msgid "+ Add a new value"
msgstr "Új szerver hozzáadása"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Nincs érvényes kép elérési útja a(z) %s témának!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Nincs előnézet."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "csináld"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "A(z) %s alapértelmezett téma nem található!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Nem található a(z) %s téma!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Nem található a(z) %s téma téma elérési útja!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8528,13 +8530,13 @@ msgstr "A felhasználókéval azonos nevű adatbázisok eldobása."
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."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
@@ -10140,9 +10142,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
-#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
-#| "[/kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
+#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
+#| "kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
diff --git a/po/id.po b/po/id.po
index bcdf447432..7bbbaca6c0 100644
--- a/po/id.po
+++ b/po/id.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-06-18 11:34+0200\n"
"Last-Translator: \n"
"Language-Team: indonesian \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: Pootle 2.0.5\n"
@@ -48,10 +48,10 @@ msgstr "Cari"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Cari"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Go"
@@ -132,9 +132,9 @@ msgstr "Komentar Database: "
msgid "Table comments"
msgstr "Komentar tabel"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Komentar tabel"
msgid "Column"
msgstr "Kolom"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Kolom"
msgid "Type"
msgstr "Jenis"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "Link ke"
msgid "Comments"
msgstr "Komentar"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "Komentar"
msgid "No"
msgstr "Tidak"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -332,8 +333,8 @@ msgstr "Menambahkan pembatas"
msgid "Switch to copied database"
msgstr "Pindah ke database yang disalin"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -496,8 +497,8 @@ msgstr "Pencarian SQL dalam database %s:"
msgid "Submit Query"
msgstr "Jalankan Pencarian SQL"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -601,7 +602,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Akses ditolak"
@@ -720,11 +721,11 @@ msgstr "Pelacakan tidak aktif."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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. Silahkan lihat "
-"%sdokumentasi%s"
+"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat %"
+"sdokumentasi%s"
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -741,7 +742,7 @@ msgstr "Tiruan"
msgid "Sum"
msgstr "Jumlah"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s adalah mesin penyimpan utama pada server MySQL ini."
@@ -790,8 +791,8 @@ msgstr "Pandangan cetak"
msgid "Empty"
msgstr "Mengosongkan"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -868,9 +869,9 @@ msgstr "Diperbarui"
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -964,11 +965,11 @@ msgstr "Dump (Skema) disimpan pada file %s."
#: import.php:58
#, 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."
msgstr ""
-"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat "
-"%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
+"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat %"
+"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1148,11 +1149,11 @@ msgstr "Hapus pengguna yang dipilih"
msgid "Close"
msgstr "Tutup"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ubah"
@@ -1689,226 +1690,12 @@ msgstr "Menit"
msgid "Second"
msgstr "Detik"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Ukuran huruf"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"File yang di upload melewati ketentuan upload_max_filesize dalam php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"File yang di upload melewati MAX_FILE_SIZE yang ditentukan dalam form HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "File yang di upload hanya ter-upload sebagian."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Folder sementara tidak ditemukan."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Gagal menulis file ke diska."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Upload file dihentikan oleh ekstensi."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Kesalahan yang tidak diketahui dalam upload file."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 3.11[/a]"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Indeks belum ditentukan!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeks"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unik"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Dipadatkan"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Bilangan Pokok"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Komentar"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Kunci utama telah dihapus"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeks %s telah dihapus"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Index %1$s dan %2$s sepertinya sama dan salah satu dari mereka memungkinkan "
-"untuk dibuang."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Basisdata"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Error"
-
-# No difference between singular and plural in this case for Indonesian
-# language.
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d baris terpengaruh."
-
-# No difference between singular and plural in this case for Indonesian
-# language.
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d baris telah dihapus."
-
-# No difference between singular and plural in this case for Indonesian
-# language.
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d baris disisipkan."
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Tidak dapat menyimpan tabel terakhir: \"%1$s\""
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Tabel terakhir"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Tidak ada tabel terakhir"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Informasi secara rinci tentang keadaan mesin penyimpan ini tidak ditemukan."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s siap untuk digunakan pada server MySQL ini."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s dimatikan untuk server MySQL ini."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Server MySQL ini tidak mendukung mesin penyimpan %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Basisdata tidak valid"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Nama tabel tidak valid"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Kesalahan mengganti nama table %1$s ke %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Nama tabel %s telah diubah menjadi %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Tidak dapat menyimpan preferensi UI tabel"
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Lokasi citra yang benar untuk tema %s tidak ditemukan!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Tidak ada preview yang tersedia."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "ambil ini"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Tema %s bawaan tidak ditemukan!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s tidak ditemukan!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "\"Path\" untuk tema tidak ditemukan untuk tema %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr "Tema"
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Koneksi gagal: setelan tidak berlaku."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Selamat Datang di %s"
@@ -1916,8 +1703,8 @@ msgstr "Selamat Datang di %s"
#: libraries/auth/config.auth.lib.php:106
#, 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 file konfigurasi. Anda bisa menggunakan %1$ssetup "
"script%2$s untuk membuatnya."
@@ -1935,44 +1722,44 @@ msgstr ""
"kecocokannya dengan informasi yang telah diberikan oleh administrator server "
"MySQL."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Login"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Dokumentasi phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
"Anda bisa memasukkan hostname/alamat IP dan port dipisahkan dengan spasi."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Server:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Nama Pengguna:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Kata Sandi:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Pilihan Server"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Mulai dari sini cookies harus diaktifkan."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -1980,14 +1767,14 @@ msgstr ""
"Masuk tanpa kata sandi tidak diperbolehkan dalam konfigurasi (lihat "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Tidak ada aktifitas selama %s detik atau lebih. Silakan login kembali"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Gagal login ke MySQL server"
@@ -2026,6 +1813,14 @@ msgstr "Kesalahan PBMS"
msgid "PBMS connection failed:"
msgstr "Koneksi PBMS gagal:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Error"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2078,6 +1873,11 @@ msgstr "Tabel"
msgid "Data"
msgstr "Data"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeks"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2107,13 +1907,13 @@ msgstr "Periksa hak-hak"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Tidak dapat memuat konfigurasi default dari: \"%1$s\""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2358,77 +2158,9 @@ msgstr "Tidak ada arsip untuk diunggah"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Keduanya"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Tempat"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Kiri"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Kanan"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Buka"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Tutup"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "struktur"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "data"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "struktur dan data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Cepat - hanya menampilkan opsi untuk konfigurasi"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Custom - menampilkan semua opsi yang mungkin untuk konfigurasi"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Custom - seperti di atas, namun tanpa pilihan cepat/custom"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "INSERT lengkap"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "INSERT yang diperluas"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "keduanya dari yang di atas"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "tidak keduanya dari yang di atas"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Ukuran huruf"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3103,6 +2835,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Basisdata"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4640,6 +4378,78 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Keduanya"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Tempat"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Kiri"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Kanan"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Buka"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Tutup"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "struktur"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "data"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "struktur dan data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Cepat - hanya menampilkan opsi untuk konfigurasi"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Custom - menampilkan semua opsi yang mungkin untuk konfigurasi"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Custom - seperti di atas, namun tanpa pilihan cepat/custom"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "INSERT lengkap"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "INSERT yang diperluas"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "keduanya dari yang di atas"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "tidak keduanya dari yang di atas"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4709,6 +4519,24 @@ msgstr ""
msgid "Add a new Event"
msgstr "Menambahkan pengguna baru"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Koneksi untuk controluser yang di definisikan di konfigurasi Anda gagal."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Server tidak menjawab"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(atau konfigurasi socket dari server MySQL tidak benar)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Rincian..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4783,9 +4611,9 @@ msgstr "Ukuran Panjang/Nilai*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4843,6 +4671,11 @@ msgstr "Tipe Pencarian"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Komentar"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4907,24 +4740,6 @@ msgstr ""
"Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation."
"html#faq3_11@Dokumentasi]FAQ 3.11[/a]"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Koneksi untuk controluser yang di definisikan di konfigurasi Anda gagal."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Server tidak menjawab"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(atau konfigurasi socket dari server MySQL tidak benar)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Rincian..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5090,8 +4905,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:275
@@ -5844,8 +5659,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6165,6 +5980,46 @@ msgstr "Gambarkan"
msgid "Export contents"
msgstr "Ekspor isi"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"File yang di upload melewati ketentuan upload_max_filesize dalam php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"File yang di upload melewati MAX_FILE_SIZE yang ditentukan dalam form HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "File yang di upload hanya ter-upload sebagian."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Folder sementara tidak ditemukan."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Gagal menulis file ke diska."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Upload file dihentikan oleh ekstensi."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Kesalahan yang tidak diketahui dalam upload file."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 3.11[/a]"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6184,41 +6039,6 @@ msgstr "Hasil SQL"
msgid "Generated by"
msgstr "Diciptakan oleh"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Database tidak ditemukan"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6280,6 +6100,41 @@ msgstr "Nama kolom"
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Database tidak ditemukan"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6308,6 +6163,42 @@ msgstr ""
"File XML yang ditentukan cacat atau tidak lengkap. Mohon perbaiki dan coba "
"lagi."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Indeks belum ditentukan!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unik"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Dipadatkan"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Bilangan Pokok"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Kunci utama telah dihapus"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeks %s telah dihapus"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Index %1$s dan %2$s sepertinya sama dan salah satu dari mereka memungkinkan "
+"untuk dibuang."
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6320,6 +6211,30 @@ msgstr "tanpa"
msgid "Convert to Kana"
msgstr ""
+# No difference between singular and plural in this case for Indonesian
+# language.
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d baris terpengaruh."
+
+# No difference between singular and plural in this case for Indonesian
+# language.
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d baris telah dihapus."
+
+# No difference between singular and plural in this case for Indonesian
+# language.
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d baris disisipkan."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6562,6 +6477,18 @@ msgstr ""
msgid "This format has no options"
msgstr "Format ini tidak ada pilihannya"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Tidak dapat menyimpan tabel terakhir: \"%1$s\""
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Tabel terakhir"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Tidak ada tabel terakhir"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "tidak oke"
@@ -6951,64 +6878,6 @@ msgstr "Perbedaan"
msgid "Target database"
msgstr "Database target"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Melaksanakan perintah SQL pada database %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Melaksanakan perintah SQL pada database %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Kalender"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Nama kolom"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Simpan pencarian SQL ini"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Izinkan semua pengguna untuk mengakses simpanan ini"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Jangan timpahkan pencarian ini dari jendela luar"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Pembatas"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Tampilkan ulang perintah SQL "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Hanya melihat"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "dari File"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "direktori upload pada web-server"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7074,6 +6943,64 @@ msgstr "Identifer tidak valid"
msgid "Unknown Punctuation String"
msgstr "Punctation String tidak dikenali"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Melaksanakan perintah SQL pada database %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Melaksanakan perintah SQL pada database %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Kalender"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Nama kolom"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Simpan pencarian SQL ini"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Izinkan semua pengguna untuk mengakses simpanan ini"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Jangan timpahkan pencarian ini dari jendela luar"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Pembatas"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Tampilkan ulang perintah SQL "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Hanya melihat"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "dari File"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "direktori upload pada web-server"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7083,6 +7010,49 @@ msgstr ""
"Pengesahan SQL tidak dapat disahkan. Mohon periksa kembali ekstension PHP "
"yang diperlukan seperti yang tercatat dalam %sdokumentasi%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Informasi secara rinci tentang keadaan mesin penyimpan ini tidak ditemukan."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s siap untuk digunakan pada server MySQL ini."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s dimatikan untuk server MySQL ini."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Server MySQL ini tidak mendukung mesin penyimpan %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Basisdata tidak valid"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Nama tabel tidak valid"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Kesalahan mengganti nama table %1$s ke %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Nama tabel %s telah diubah menjadi %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Tidak dapat menyimpan preferensi UI tabel"
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7213,6 +7183,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Menambahkan pengguna baru"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Lokasi citra yang benar untuk tema %s tidak ditemukan!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Tidak ada preview yang tersedia."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "ambil ini"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Tema %s bawaan tidak ditemukan!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s tidak ditemukan!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "\"Path\" untuk tema tidak ditemukan untuk tema %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "Tema"
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8327,8 +8329,8 @@ msgstr "Hapus database yang memiliki nama yang sama dengan 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 "
diff --git a/po/it.po b/po/it.po
index fecc35f05d..5f2590d400 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-05-25 22:43+0200\n"
"Last-Translator: Rouslan Placella \n"
"Language-Team: italian \n"
-"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -49,10 +49,10 @@ msgstr "Cerca"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Cerca"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Esegui"
@@ -133,9 +133,9 @@ msgstr "Commento del database: "
msgid "Table comments"
msgstr "Commenti alla tabella"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "Commenti alla tabella"
msgid "Column"
msgstr "Campo"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "Campo"
msgid "Type"
msgstr "Tipo"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,12 +199,13 @@ msgstr "Collegamenti a"
msgid "Comments"
msgstr "Commenti"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +216,17 @@ msgstr "Commenti"
msgid "No"
msgstr "No"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -333,8 +334,8 @@ msgstr "Aggiungi vincoli"
msgid "Switch to copied database"
msgstr "Passa al database copiato"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -498,8 +499,8 @@ msgstr "SQL-query sul database %s:"
msgid "Submit Query"
msgstr "Invia Query"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -607,7 +608,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Accesso negato"
@@ -728,8 +729,8 @@ msgstr "Il tracking non è attivo."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
@@ -749,7 +750,7 @@ msgstr "Replicazione"
msgid "Sum"
msgstr "Totali"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s è il motore di memorizzazione predefinito su questo server MySQL."
@@ -798,8 +799,8 @@ msgstr "Visualizza per stampa"
msgid "Empty"
msgstr "Svuota"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -872,9 +873,9 @@ msgstr "Aggiornato"
msgid "Status"
msgstr "Stato"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -969,8 +970,8 @@ msgstr "Il dump è stato salvato nel file %s."
#: import.php:58
#, 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."
msgstr ""
"Stai probabilmente cercando di caricare sul server un file troppo grande. "
"Fai riferimento alla documentazione %sdocumentation%s se desideri aggirare "
@@ -1158,11 +1159,11 @@ msgstr "Rimozione Utenti Selezionati"
msgid "Close"
msgstr "Chiudi"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Modifica"
@@ -1709,228 +1710,12 @@ msgstr "Minuto"
msgid "Second"
msgstr "Secondo"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Dimensione font"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Il file caricato eccede il parametro upload_max_filesize in php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Il file caricato eccede il parametro MAX_FILE_SIZE specificato nel form HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Il file è stato solo parzialmente caricato."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Non trovo la cartella temporanea."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Non riesco a scrivere il file su disco."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Caricamento del file interrotto per estensione errata."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Errore sconosciuto nel caricamento del file."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Errore nello spostare il file caricato, vedi [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Nessun indice definito!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indici"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unica"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Compresso"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinalità"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Commenti"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "La chiave primaria è stata eliminata"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "L'indice %s è stato eliminato"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Sembra che gli indici %1$s e %2$s sono uguali ed uno di questi potrebbe, "
-"possibilmente, essere rimosso."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Database"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Errore"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d riga modificata."
-msgstr[1] "%1$d righe modificate."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d riga cancellata."
-msgstr[1] "%1$d righe cancellate."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d riga inserita."
-msgstr[1] "%1$d righe inserite."
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not save configuration"
-msgid "Could not save recent table"
-msgstr "Impossibile salvare la configurazione"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Conta tabelle"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Non ci sono server configurati"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Non è disponibile nessuna informazione dettagliata sullo stato di questo "
-"motore di memorizzazione."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s è disponibile su questo server MySQL."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s è stato disabilitato su questo server MySQL."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Questo server MySQL non supporta il motore di memorizzazione %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Database non valido"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Nome tabella non valido"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Errore nel rinominare la tabella %1$s in %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "La tabella %s è stata rinominata %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-"Non è stato trovato nessun percorso per l'immagine valido per il tema %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Nessuna anteprima disponibile."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "prendilo"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Tema di default %s non trovato!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s non trovato!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Percorso per il tema non trovato %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Impossibile connettersi: impostazioni non valide."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Benvenuto in %s"
@@ -1938,8 +1723,8 @@ msgstr "Benvenuto in %s"
#: libraries/auth/config.auth.lib.php:106
#, 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."
@@ -1956,59 +1741,59 @@ msgstr ""
"l'username e la password nel file di configurazione ed assicurarsi che "
"corrispondano alle informazioni fornite dall'amministratore del server MySQL."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Connetti"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Documentazione di phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
"Puoi inserire l'Indirizzo IP/hostname e la porta, separati da uno spazio."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Server:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Nome utente:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Password:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Scelta del server"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Da questo punto in poi, i cookie devono essere abilitati."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"Login senza password è vietato dalla configurazione (vedi AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
"Nessuna attività da %s secondi o più, si prega di autenticarsi nuovamente"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Impossibile eseguire il login nel server MySQL"
@@ -2049,6 +1834,14 @@ msgstr "Errore PBMS"
msgid "PBMS connection failed:"
msgstr "Connessione PBMS fallita:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Errore"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "Impossibile ottenere informazioni su BLOB da parte del PBMS:"
@@ -2101,6 +1894,11 @@ msgstr "Tabelle"
msgid "Data"
msgstr "Dati"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indici"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2130,13 +1928,13 @@ msgstr "Controlla i privilegi"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Impossibile salvare la configurazione"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2382,79 +2180,9 @@ msgstr "Nessun file da caricare"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Entrambi"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-#, fuzzy
-#| msgid "Height"
-msgid "Right"
-msgstr "Altezza"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Aperto"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Chiuso"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "struttura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "dati"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "struttura e dati"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Rapido - mostra solo le opzioni minime di configurazione"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Personalizzato - mostra tutte le possibili opzioni di configurazione"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Personalizzato - come sopra ma senza la scelta quick/custom"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "inserimenti completi"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "inserimenti estesi"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "entrambi i precedenti"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "nessuno dei precedenti"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Dimensione font"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3117,6 +2845,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Database"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Opzioni di visualizzazione dei database"
@@ -4796,6 +4530,80 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Indirizzo IP incorretto: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Entrambi"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+#, fuzzy
+#| msgid "Height"
+msgid "Right"
+msgstr "Altezza"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Aperto"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Chiuso"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "struttura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "dati"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "struttura e dati"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Rapido - mostra solo le opzioni minime di configurazione"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Personalizzato - mostra tutte le possibili opzioni di configurazione"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Personalizzato - come sopra ma senza la scelta quick/custom"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "inserimenti completi"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "inserimenti estesi"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "entrambi i precedenti"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "nessuno dei precedenti"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4866,6 +4674,24 @@ msgstr ""
msgid "Add a new Event"
msgstr "Aggiungi un nuovo server"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Connessione per controluser come definito nella configurazione fallita."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Il server non risponde"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(o il socket del server locale MySQL non è correttamente configurato)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Dettagli..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4940,9 +4766,9 @@ msgstr "Lunghezza/Set*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -5001,6 +4827,11 @@ msgstr "Sicurezza"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Commenti"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5067,24 +4898,6 @@ msgstr ""
"Può essere approssimato. Vedi [a@./Documentation.html#faq3_11@Documentation]"
"FAQ 3.11[/a]"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Connessione per controluser come definito nella configurazione fallita."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Il server non risponde"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(o il socket del server locale MySQL non è correttamente configurato)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Dettagli..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5225,8 +5038,8 @@ msgstr ", il nome della tabella diventerá @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 ""
"Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi "
"usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte "
@@ -6017,8 +5830,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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."
@@ -6328,6 +6141,45 @@ msgstr "Viste"
msgid "Export contents"
msgstr "Esporta contenuti"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "Il file caricato eccede il parametro upload_max_filesize in php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Il file caricato eccede il parametro MAX_FILE_SIZE specificato nel form HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Il file è stato solo parzialmente caricato."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Non trovo la cartella temporanea."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Non riesco a scrivere il file su disco."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Caricamento del file interrotto per estensione errata."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Errore sconosciuto nel caricamento del file."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Errore nello spostare il file caricato, vedi [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6347,41 +6199,6 @@ msgstr "Risultato SQL"
msgid "Generated by"
msgstr "Generato da"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Le seguenti strutture sono state create o modificate. Qui tu puoi:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Visualizza i contenuti delle strutture facendo click sul loro nome"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Modificare ogni impostazione cliccando sul corrispondente link \"Opzioni\""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Modifica la sua struttura seguendo il link \"Struttura\""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Vai al database"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "impostazioni"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Vai alla tabella"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Vai alla visualizzazione"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6449,6 +6266,41 @@ msgstr "Nomi delle colonne"
msgid "This plugin does not support compressed imports!"
msgstr "Questo plugin non supporta importazioni di dati compressi!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Le seguenti strutture sono state create o modificate. Qui tu puoi:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Visualizza i contenuti delle strutture facendo click sul loro nome"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Modificare ogni impostazione cliccando sul corrispondente link \"Opzioni\""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Modifica la sua struttura seguendo il link \"Struttura\""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Vai al database"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "impostazioni"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Vai alla tabella"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Vai alla visualizzazione"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6474,6 +6326,42 @@ msgstr ""
"Il file XML specificato era malformato o incompleto. Correggi questo "
"problema e prova ancora."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Nessun indice definito!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unica"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Compresso"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinalità"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "La chiave primaria è stata eliminata"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "L'indice %s è stato eliminato"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Sembra che gli indici %1$s e %2$s sono uguali ed uno di questi potrebbe, "
+"possibilmente, essere rimosso."
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6484,6 +6372,27 @@ msgstr "Nessuno"
msgid "Convert to Kana"
msgstr "Converti a Kana"
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d riga modificata."
+msgstr[1] "%1$d righe modificate."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d riga cancellata."
+msgstr[1] "%1$d righe cancellate."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d riga inserita."
+msgstr[1] "%1$d righe inserite."
+
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "Da"
@@ -6722,6 +6631,22 @@ msgstr "Ricarica la frame di navigazione"
msgid "This format has no options"
msgstr "Questo formato non ha opzioni"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Could not save recent table"
+msgstr "Impossibile salvare la configurazione"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Conta tabelle"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Non ci sono server configurati"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "non OK"
@@ -7106,61 +7031,6 @@ msgstr "Differenza"
msgid "Target database"
msgstr "Database di destinazione"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Eseguendo query SQL sul server %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Esegui la/e query SQL sul database %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Cancella"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Campi"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Aggiungi ai preferiti questa query SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Permetti ad ogni utente di accedere a questo bookmark"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Sostituisci segnalibro esistente se con lo stesso nome"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Non sovrascrivere questa query da fuori della finestra"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Delimitatori"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Mostra di nuovo questa query "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Visualizza solo"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Percorso del file"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "directory di upload del web-server"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7225,6 +7095,61 @@ msgstr "Identificatore Non Valido"
msgid "Unknown Punctuation String"
msgstr "Stringa di Punctuation Sconosciuta"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Eseguendo query SQL sul server %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Esegui la/e query SQL sul database %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Cancella"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Campi"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Aggiungi ai preferiti questa query SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Permetti ad ogni utente di accedere a questo bookmark"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Sostituisci segnalibro esistente se con lo stesso nome"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Non sovrascrivere questa query da fuori della finestra"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Delimitatori"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Mostra di nuovo questa query "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Visualizza solo"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Percorso del file"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "directory di upload del web-server"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7235,6 +7160,50 @@ msgstr ""
"installato le estensioni php necessarie come descritto nella %sdocumentazione"
"%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Non è disponibile nessuna informazione dettagliata sullo stato di questo "
+"motore di memorizzazione."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s è disponibile su questo server MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s è stato disabilitato su questo server MySQL."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Questo server MySQL non supporta il motore di memorizzazione %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Database non valido"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Nome tabella non valido"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Errore nel rinominare la tabella %1$s in %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "La tabella %s è stata rinominata %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "La tabella sembra essere vuota!"
@@ -7353,6 +7322,39 @@ msgstr "Definizione PARTITION"
msgid "+ Add a new value"
msgstr "+ Aggiungi un nuovo valore"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+"Non è stato trovato nessun percorso per l'immagine valido per il tema %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Nessuna anteprima disponibile."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "prendilo"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Tema di default %s non trovato!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s non trovato!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Percorso per il tema non trovato %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7699,8 +7701,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."
#: navigation.php:213 server_databases.php:281 server_synchronize.php:1202
msgid "No databases"
@@ -8408,8 +8410,8 @@ msgstr "Elimina i databases gli stessi nomi 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 "
@@ -10006,10 +10008,10 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - "
-"%saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia"
-"%s. Comunque, la protezione a base di IP potrebbe non essere affidabile se "
-"il tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono "
+"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - %"
+"saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia%s. "
+"Comunque, la protezione a base di IP potrebbe non essere affidabile se il "
+"tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono "
"connessi."
#: setup/lib/index.lib.php:268
@@ -10024,8 +10026,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]."
#: setup/lib/index.lib.php:270
#, php-format
diff --git a/po/ja.po b/po/ja.po
index 649cd10ed9..3e5e678471 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-06-22 12:41+0200\n"
"Last-Translator: Yuichiro \n"
"Language-Team: japanese \n"
-"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -48,10 +48,10 @@ msgstr "検索"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "検索"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "実行する"
@@ -132,9 +132,9 @@ msgstr "データベースのコメント"
msgid "Table comments"
msgstr "テーブルのコメント"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "テーブルのコメント"
msgid "Column"
msgstr "カラム"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "カラム"
msgid "Type"
msgstr "種別"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "リンク先"
msgid "Comments"
msgstr "コメント"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "コメント"
msgid "No"
msgstr "いいえ"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -332,8 +333,8 @@ msgstr "制約を追加する"
msgid "Switch to copied database"
msgstr "コピーしたデータベースに切り替える"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -496,8 +497,8 @@ msgstr "データベース %s のSQL:"
msgid "Submit Query"
msgstr "クエリを実行する"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -589,13 +590,14 @@ msgid ""
"handling multi queries. The execution of some stored routines may fail!"
"b> Please use the improved 'mysqli' extension to avoid any problems."
msgstr ""
-"「mysql」拡張を使用されていますが、将来的に PHP "
-"で廃止予定になっています。この拡張はマルチクエリに対応できていません。ストアドルーチンの実行が失敗する可能性があります! "
-"問題を回避するためには、改良された「mysqli」拡張を使用するようにしてください。"
+"「mysql」拡張を使用されていますが、将来的に PHP で廃止予定になっています。こ"
+"の拡張はマルチクエリに対応できていません。ストアドルーチンの実行が失敗する"
+"可能性があります! 問題を回避するためには、改良された「mysqli」拡張を使用"
+"するようにしてください。"
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "アクセスは拒否されました"
@@ -661,7 +663,6 @@ msgid "Search in database"
msgstr "データベース内検索"
#: db_search.php:300
-#| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgid "Words or values to search for (wildcard: \"%\"):"
msgstr "検索する単語や値 (ワイルドカード: \"%\"):"
@@ -674,7 +675,6 @@ msgid "Words are separated by a space character (\" \")."
msgstr "各単語は空白文字(\" \")で区切ってください"
#: db_search.php:323
-#| msgid "Inside table(s):"
msgid "Inside tables:"
msgstr "検索するテーブル:"
@@ -712,8 +712,8 @@ msgstr "SQL コマンドの追跡は非アクティブです。"
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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をご覧ください。"
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -731,7 +731,7 @@ msgstr "レプリケーション"
msgid "Sum"
msgstr "合計"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s はこの MySQL サーバのデフォルトストレージエンジンです"
@@ -780,8 +780,8 @@ msgstr "印刷用画面"
msgid "Empty"
msgstr "空にする"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -854,9 +854,9 @@ msgstr "更新日時"
msgid "Status"
msgstr "状態"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -952,8 +952,8 @@ msgstr "ダンプをファイル %s に保存しました"
#: import.php:58
#, 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."
msgstr ""
"アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ"
"メント%s をご覧ください"
@@ -1134,11 +1134,11 @@ msgstr "選択したユーザを削除する"
msgid "Close"
msgstr "閉じる"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "編集"
@@ -1671,220 +1671,12 @@ msgstr "分"
msgid "Second"
msgstr "秒"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "フォントサイズ"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"アップロードしたファイルは php.ini に指定されている upload_max_filesize ディ"
-"レクティブの値を超えています。"
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"アップロードしたファイルは HTML フォームに指定されている MAX_FILE_SIZE ディレ"
-"クティブの値を超えています。"
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "アップロードしたファイルは一部分しかアップロードできませんでした。"
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "一時フォルダが見つかりません。"
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "ファイルをディスクに書き込めません。"
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "拡張のせいでファイルのアップロードが中断されました。"
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "ファイルのアップロード中に予期しないエラーが発生しました。"
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"アップロードされたファイルの移動に失敗しました。FAQ 1.11 をご覧ください。"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "インデックスが定義されていません!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "インデックス"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "ユニーク"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "圧縮"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "一意な値の数"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "コメント"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "主キーを削除しました"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "インデックス %s を削除しました"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"インデックス %1$s と %2$s は同一のもののようです。一方は削除してもよいかもし"
-"れません。"
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "データベース"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "エラー"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d 行変更しました。"
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d 行削除しました。"
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d 行挿入しました。"
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "最近使用したテーブルが保存できません"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "最近使用したテーブル"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "最近使用したテーブルはありません"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "このストレージエンジンにはステータスの詳細情報はありません"
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s は有効になっています"
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s は無効になっています"
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "この MySQL サーバは %s ストレージエンジンをサポートしていません"
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "不正なデータベースです"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "テーブル名が不正です"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "テーブルを %1$s から %2$s にリネームするときにエラーが発生しました"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "テーブル %s を %s にリネームしました"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "テーブルにユーザ設定が保存できません"
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "テーマ %s の画像パスが無効です!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "プレビューは利用できません"
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "これにする"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "デフォルトテーマ %s が見つかりません!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "テーマ %s が見つかりません!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "テーマ %s のテーマパスが見つかりません!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr "テーマ"
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "接続できません: 設定が無効です"
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "%s へようこそ"
@@ -1892,11 +1684,11 @@ msgstr "%s へようこそ"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
msgid ""
@@ -1909,58 +1701,58 @@ msgstr ""
"ユーザ名、パスワードが MySQL サーバの管理者から与えられた情報と一致するか確認"
"してください"
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "ログイン"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin のドキュメント"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
"「ホスト名/IPアドレス」と「ポート」を空白で区切って入力することができます。"
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "サーバ"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "ユーザ名:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "パスワード:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "サーバの選択"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "クッキーを有効にしてください"
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"パスワードなしログインは設定 (AllowNoPassword) によって禁止されています。"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "%s 秒以上操作をしませんでした。ログインしなおしてください"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "MySQL サーバにログインできません"
@@ -2000,6 +1792,14 @@ msgstr "PBMS エラー"
msgid "PBMS connection failed:"
msgstr "PBMS 接続に失敗しました:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "エラー"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS が BLOB 情報取得に失敗しました:"
@@ -2052,6 +1852,11 @@ msgstr "テーブル"
msgid "Data"
msgstr "データ"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "インデックス"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2081,13 +1886,13 @@ msgstr "特権をチェックする"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "設定が保存できません"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2332,77 +2137,9 @@ msgstr "アップロードファイルがありません"
msgid "Execute"
msgstr "実行"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "両方"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "なし"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "左"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "右"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "開いておく"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "閉じておく"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "構造"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "データ"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "構造とデータ"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "簡易 - 設定するための最小限のオプションのみ表示"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "詳細 - 設定に必要な全てのオプションを表示"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "詳細 - 上とほぼ同じ、ただし簡易/詳細の選択はなし"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "完全な INSERT 文を作成する"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "長い INSERT 文を作成する"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "上の両方を行う"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "上のどちらでもない"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "フォントサイズ"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3057,6 +2794,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "データベース"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "データベースの表示オプション"
@@ -4671,6 +4414,78 @@ msgstr "pmadb を使いましたが、phpMyAdmin ユーザのパスワードが
msgid "Incorrect IP address: %s"
msgstr "不正な IP アドレス:%s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "両方"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "なし"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "左"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "右"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "開いておく"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "閉じておく"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "構造"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "データ"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "構造とデータ"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "簡易 - 設定するための最小限のオプションのみ表示"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "詳細 - 設定に必要な全てのオプションを表示"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "詳細 - 上とほぼ同じ、ただし簡易/詳細の選択はなし"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "完全な INSERT 文を作成する"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "長い INSERT 文を作成する"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "上の両方を行う"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "上のどちらでもない"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4684,19 +4499,16 @@ msgstr "%s 拡張がありません。PHP の設定をチェックしてみて
#: libraries/db_events.inc.php:30
#, php-format
-#| msgid "Export contents"
msgid "Export of event %s"
msgstr "イベント %s をエクスポートする"
#: libraries/db_events.inc.php:34
#, php-format
-#| msgid "Export contents"
msgid "Export of event \"%s\""
msgstr "イベント \"%s\" をエクスポートする"
#: libraries/db_events.inc.php:40
#, php-format
-#| msgid "No tables found in database"
msgid "No event with name %s found in database %s"
msgstr "データベース %2$s に %1$s という名前のイベントはありません"
@@ -4706,7 +4518,6 @@ msgid "Events"
msgstr "イベント"
#: libraries/db_events.inc.php:58 libraries/db_events.inc.php:60
-#| msgid "There are no files to upload"
msgid "There are no events to display."
msgstr "表示できるイベントがありません"
@@ -4735,10 +4546,27 @@ msgid "Turn it off"
msgstr ""
#: libraries/db_events.inc.php:141
-#| msgid "Add a new server"
msgid "Add a new Event"
msgstr "新しいイベントを追加する"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"設定ファイルに定義されている管理ユーザ(controluser)での接続に失敗しました"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "サーバが応答しません"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(あるいはローカルの MySQL サーバのソケットが正しく設定されていません)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "詳細..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4791,7 +4619,6 @@ msgid "Parameters"
msgstr "パラメータ"
#: libraries/db_routines.lib.php:689
-#| msgid "Direct links"
msgid "Direction"
msgstr "入出力"
@@ -4808,9 +4635,9 @@ msgstr "長さ/値"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4844,7 +4671,6 @@ msgid "Return options"
msgstr "テーブルオプション"
#: libraries/db_routines.lib.php:745
-#| msgid "Description"
msgid "Definition"
msgstr "定義"
@@ -4866,6 +4692,11 @@ msgstr "セキュリティ"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "コメント"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr "ルーチンのパラメータ"
@@ -4894,7 +4725,9 @@ msgstr "パラメータに対して不正な入出力「%s」が与えられて
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
-msgstr "ルーチンパラメータが ENUM、SET、VARCHAR、VARBINARY の場合、長さ/値は必須です。"
+msgstr ""
+"ルーチンパラメータが ENUM、SET、VARCHAR、VARBINARY の場合、長さ/値は必須で"
+"す。"
#: libraries/db_routines.lib.php:1020
msgid "You must provide a name and a type for each routine parameter."
@@ -4922,24 +4755,6 @@ msgid ""
"3.11[/a]"
msgstr "正確な数字とは限りません。FAQ 3.11 をご覧ください"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"設定ファイルに定義されている管理ユーザ(controluser)での接続に失敗しました"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "サーバが応答しません"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(あるいはローカルの MySQL サーバのソケットが正しく設定されていません)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "詳細..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5080,8 +4895,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変換されま"
@@ -5236,7 +5051,6 @@ msgid "Language"
msgstr "言語"
#: libraries/display_tbl.lib.php:397
-#| msgid "Textarea columns"
msgid "Restore column order"
msgstr "カラムの順番を元に戻す"
@@ -5245,7 +5059,6 @@ msgid "Drag to reorder"
msgstr "ドラッグでカラムの入れ替え"
#: libraries/display_tbl.lib.php:412
-#| msgid "Click to select"
msgid "Click to sort"
msgstr "クリックでソート"
@@ -5848,8 +5661,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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にあります。"
@@ -6146,6 +5959,47 @@ msgstr "ビュー"
msgid "Export contents"
msgstr "内容をエクスポートする"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"アップロードしたファイルは php.ini に指定されている upload_max_filesize ディ"
+"レクティブの値を超えています。"
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"アップロードしたファイルは HTML フォームに指定されている MAX_FILE_SIZE ディレ"
+"クティブの値を超えています。"
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "アップロードしたファイルは一部分しかアップロードできませんでした。"
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "一時フォルダが見つかりません。"
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "ファイルをディスクに書き込めません。"
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "拡張のせいでファイルのアップロードが中断されました。"
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "ファイルのアップロード中に予期しないエラーが発生しました。"
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"アップロードされたファイルの移動に失敗しました。FAQ 1.11 をご覧ください。"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6165,41 +6019,6 @@ msgstr "SQL の結果"
msgid "Generated by"
msgstr "生成環境"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "下に示す構成が、作成もしくは変更されました。ここで次のことが行えます。"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "名前をクリックすることで構造内容を表示します。"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"「オプション」のリンクをクリックすることで対応する設定の変更が行えます。"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "名前の後ろにある「構造」のリンクより構造の編集が行えます。"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "データベースに移動"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "設定"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "テーブルに移動"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "ビューに移動"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6266,6 +6085,41 @@ msgstr "カラム名"
msgid "This plugin does not support compressed imports!"
msgstr "このプラグインでは圧縮されたファイルのインポートはできません!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "下に示す構成が、作成もしくは変更されました。ここで次のことが行えます。"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "名前をクリックすることで構造内容を表示します。"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"「オプション」のリンクをクリックすることで対応する設定の変更が行えます。"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "名前の後ろにある「構造」のリンクより構造の編集が行えます。"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "データベースに移動"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "設定"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "テーブルに移動"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "ビューに移動"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr "パーセントは適切な小数に変換する(例:12.00% を .12)"
@@ -6290,6 +6144,42 @@ msgstr ""
"指定された XML ファイルは、不完全もしくはフォーマットが正しくありません。問題"
"を修正して再度試してみてください。"
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "インデックスが定義されていません!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "ユニーク"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "圧縮"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "一意な値の数"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "主キーを削除しました"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "インデックス %s を削除しました"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"インデックス %1$s と %2$s は同一のもののようです。一方は削除してもよいかもし"
+"れません。"
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6300,6 +6190,24 @@ msgstr "なし"
msgid "Convert to Kana"
msgstr "全角カナへ変換する"
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d 行変更しました。"
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d 行削除しました。"
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d 行挿入しました。"
+
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "付け替え元"
@@ -6538,6 +6446,18 @@ msgstr "ナビゲーションフレームの再読み込み"
msgid "This format has no options"
msgstr "この書式にはオプションはありません"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "最近使用したテーブルが保存できません"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "最近使用したテーブル"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "最近使用したテーブルはありません"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Not OK"
@@ -6917,61 +6837,6 @@ msgstr "差分"
msgid "Target database"
msgstr "対象先のデータベース"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "サーバ %s 上でクエリを実行する"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "データベース %s 上でクエリを実行する"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "クリア"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "カラム"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "この SQL をブックマークする"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "すべてのユーザがこのブックマークを利用できるようにする"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "同名のブックマークは差し替える"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "別ウインドウからのクエリの上書きを禁止する"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "デリミタ"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " 実行したクエリをここに表示する"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "表示のみ"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "テキストファイルの位置"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "ウェブサーバ上のアップロードディレクトリ"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7034,6 +6899,61 @@ msgstr "不正な識別子です"
msgid "Unknown Punctuation String"
msgstr "無効な句読点文字です"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "サーバ %s 上でクエリを実行する"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "データベース %s 上でクエリを実行する"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "クリア"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "カラム"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "この SQL をブックマークする"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "すべてのユーザがこのブックマークを利用できるようにする"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "同名のブックマークは差し替える"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "別ウインドウからのクエリの上書きを禁止する"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "デリミタ"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " 実行したクエリをここに表示する"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "表示のみ"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "テキストファイルの位置"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "ウェブサーバ上のアップロードディレクトリ"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7043,6 +6963,48 @@ msgstr ""
"SQL の検証機能を初期化できません。%sドキュメント%s の記載通りに必要な PHP 拡"
"張がインストールされているか確認してください"
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "このストレージエンジンにはステータスの詳細情報はありません"
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s は有効になっています"
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s は無効になっています"
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "この MySQL サーバは %s ストレージエンジンをサポートしていません"
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "不正なデータベースです"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "テーブル名が不正です"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "テーブルを %1$s から %2$s にリネームするときにエラーが発生しました"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "テーブル %s を %s にリネームしました"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "テーブルにユーザ設定が保存できません"
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "テーブルが空のようです!"
@@ -7159,6 +7121,38 @@ msgstr "パーティションの定義"
msgid "+ Add a new value"
msgstr "+ 新しい値を追加する"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "テーマ %s の画像パスが無効です!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "プレビューは利用できません"
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "これにする"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "デフォルトテーマ %s が見つかりません!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "テーマ %s が見つかりません!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "テーマ %s のテーマパスが見つかりません!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "テーマ"
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8196,8 +8190,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 が利用しているテーブルの内容とサーバの"
@@ -9725,11 +9719,10 @@ msgid ""
"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 アドレスを基にした保護は信頼性が高いとはいえません。"
#: setup/lib/index.lib.php:268
#, php-format
diff --git a/po/ka.po b/po/ka.po
index 736b05beda..e969e96634 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: georgian \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -47,10 +47,10 @@ msgstr "ძებნა"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "ძებნა"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "გადასვლა"
@@ -131,9 +131,9 @@ msgstr "მონაცემთა ბაზის კომენტარი:
msgid "Table comments"
msgstr "ცხრილის კომენტარები"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "ცხრილის კომენტარები"
msgid "Column"
msgstr "სვეტების სახელები"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "სვეტების სახელები"
msgid "Type"
msgstr "ტიპი"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,12 +199,13 @@ msgstr "Links to"
msgid "Comments"
msgstr "კომენტარები"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +216,17 @@ msgstr "კომენტარები"
msgid "No"
msgstr "არა"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -336,8 +337,8 @@ msgstr "Add constraints"
msgid "Switch to copied database"
msgstr "Switch to copied database"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -511,8 +512,8 @@ msgstr "SQL query on database %s:"
msgid "Submit Query"
msgstr "მოთხოვნის გაგზავნა"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -620,7 +621,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "წვდომა აკრძალულია"
@@ -748,11 +749,11 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -769,7 +770,7 @@ msgstr "რეპლიკაცია"
msgid "Sum"
msgstr "ჯამი"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s is the default storage engine on this MySQL server."
@@ -818,8 +819,8 @@ msgstr "ხედის ამობეჭდვა"
msgid "Empty"
msgstr "ცარიელი"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -900,9 +901,9 @@ msgstr ""
msgid "Status"
msgstr "მდგომარეობა"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -1000,11 +1001,11 @@ msgstr "Dump has been saved to file %s."
#: import.php:58
#, 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."
msgstr ""
-"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."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1192,11 +1193,11 @@ msgstr "Remove selected users"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "რედაქტირება"
@@ -1838,233 +1839,12 @@ msgstr "in use"
msgid "Second"
msgstr "წამში"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "შრიფტის ზომა"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"The uploaded file exceeds the upload_max_filesize directive in php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "The uploaded file was only partially uploaded."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Missing a temporary folder."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Failed to write file to disk."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "File upload stopped by extension."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Unknown error in file upload."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "ინდექსი არაა განსაზღვრული!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "ინდექსები"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "უნიკალური"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "შეკუმშული"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinality"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "კომენტარი"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "The primary key has been dropped"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Index %s has been dropped"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "მონაცემთა ბაზები"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "შეცდომა"
-
-#: libraries/Message.class.php:260
-#, fuzzy, php-format
-#| msgid "%1$d row(s) affected."
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d row(s) affected."
-msgstr[1] "%1$d row(s) affected."
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "%1$d row(s) deleted."
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "წაიშალა %1$d სტრიქონი."
-msgstr[1] "წაიშალა %1$d სტრიქონი."
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "%1$d row(s) inserted."
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "ჩაისვა %1$d სტრიქონი."
-msgstr[1] "ჩაისვა %1$d სტრიქონი."
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Cannot load or save configuration"
-msgid "Could not save recent table"
-msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "ცხრილების დათვლა"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "There are no configured servers"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"There is no detailed status information available for this storage engine."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s ხელმისაწვდომია ამ MySQL სერვერზე."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s გათიშულია ამ MySQL სერვერზე."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "ამ MySQL სერვერს არ აქვს %s ძრავის მხარდაჭერა."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "არასწორი მონაცემთა ბაზა"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "ცხრილის არასწორი სახელი"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Error renaming table %1$s to %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Table %s has been renamed to %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "No valid image path for theme %s found!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "No preview available."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "take it"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Default theme %s not found!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Theme %s not found!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Theme path not found for theme %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "დაკავშირება შეუძლებელია: პარამეტრები არასწორია."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "მოგესალმებათ %s"
@@ -2072,11 +1852,11 @@ msgstr "მოგესალმებათ %s"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
msgid ""
@@ -2090,56 +1870,56 @@ msgstr ""
"configuration and make sure that they correspond to the information given by "
"the administrator of the MySQL server."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "შესვლა"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin-ის დოკუმენტაცია"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "You can enter hostname/IP address and port separated by space."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "სერვერი:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "მომხმარებელი:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "პაროლი:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "სერვერის არჩევა"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Cookies must be enabled past this point."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "No activity within %s seconds; please log in again"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "MySQL სერვერზე შესვლა შეუძლებელია"
@@ -2182,6 +1962,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "MySQL კავშირის კოლაცია"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "შეცდომა"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2234,6 +2022,11 @@ msgstr "ცხრილები"
msgid "Data"
msgstr "მონაცემები"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "ინდექსები"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2267,13 +2060,13 @@ msgstr "პრივილეგიების შემოწმება"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Cannot load or save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2525,86 +2318,9 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Unclosed quote"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "სტრუქტურა"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "სტრუქტურა და მონაცემები"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "სრული ჩასმები"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Extended inserts"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "შრიფტის ზომა"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3300,6 +3016,12 @@ msgstr "Set import and export directories and compression options"
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "მონაცემთა ბაზები"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "მონაცემთა ბაზის ჩვენების პარამეტრები"
@@ -4999,6 +4721,87 @@ msgstr "Empty phpMyAdmin control user password while using pmadb"
msgid "Incorrect IP address: %s"
msgstr "IP მისამართი არასწორია: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Unclosed quote"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "სტრუქტურა"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "სტრუქტურა და მონაცემები"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "სრული ჩასმები"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Extended inserts"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -5067,6 +4870,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "ახალი სერვერის დამატება"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr "Connection for controluser as defined in your configuration failed."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "სერვერი არ პასუხობს"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(or the local MySQL server's socket is not correctly configured)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "დეტალები..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -5141,9 +4961,9 @@ msgstr "Length/Values"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -5202,6 +5022,11 @@ msgstr "უსაფრთხოება"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "კომენტარი"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5268,23 +5093,6 @@ msgstr ""
"შეიძლება იყოს მიახლოებითი. იხილეთ [a@./Documentation."
"html#faq3_11@Documentation]FAQ 3.11[/a]"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr "Connection for controluser as defined in your configuration failed."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "სერვერი არ პასუხობს"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(or the local MySQL server's socket is not correctly configured)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "დეტალები..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5454,12 +5262,12 @@ msgstr ""
#| "happen: %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:275
msgid "use this for future exports"
@@ -6258,8 +6066,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6578,6 +6386,47 @@ msgstr "ხედო"
msgid "Export contents"
msgstr "Export defaults"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"The uploaded file exceeds the upload_max_filesize directive in php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "The uploaded file was only partially uploaded."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Missing a temporary folder."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Failed to write file to disk."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "File upload stopped by extension."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Unknown error in file upload."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6595,42 +6444,6 @@ msgstr "SQL-ის შედეგი"
msgid "Generated by"
msgstr "Generated by"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "მონაცემთა ბაზები არაა"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "მონაცემთა ბაზები არაა"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6693,6 +6506,42 @@ msgstr "სვეტების სახელები"
msgid "This plugin does not support compressed imports!"
msgstr "This plugin does not support compressed imports!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "მონაცემთა ბაზები არაა"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "მონაცემთა ბაზები არაა"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6717,6 +6566,42 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "ინდექსი არაა განსაზღვრული!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "უნიკალური"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "შეკუმშული"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinality"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "The primary key has been dropped"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Index %s has been dropped"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6729,6 +6614,30 @@ msgstr "არაა"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, fuzzy, php-format
+#| msgid "%1$d row(s) affected."
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d row(s) affected."
+msgstr[1] "%1$d row(s) affected."
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "%1$d row(s) deleted."
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "წაიშალა %1$d სტრიქონი."
+msgstr[1] "წაიშალა %1$d სტრიქონი."
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "%1$d row(s) inserted."
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "ჩაისვა %1$d სტრიქონი."
+msgstr[1] "ჩაისვა %1$d სტრიქონი."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6974,6 +6883,24 @@ msgstr "Customize navigation frame"
msgid "This format has no options"
msgstr "ამ ფორმატს არ აქვს პარამეტრები"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Could not save recent table"
+msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "ცხრილების დათვლა"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "There are no configured servers"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "not OK"
@@ -7372,63 +7299,6 @@ msgstr ""
msgid "Target database"
msgstr "მონაცემთა ბაზაში ძებნა"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Run SQL query/queries on server %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Run SQL query/queries on database %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "გაწმენდა"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "სვეტების სახელები"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Bookmark this SQL query"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Let every user access this bookmark"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Replace existing bookmark of same name"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Do not overwrite this query from outside the window"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "გამყოფი"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Show this query here again "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "View only"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Location of the text file"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web server upload directory"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7491,6 +7361,63 @@ msgstr "Invalid Identifer"
msgid "Unknown Punctuation String"
msgstr "Unknown Punctuation String"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Run SQL query/queries on server %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Run SQL query/queries on database %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "გაწმენდა"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "სვეტების სახელები"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Bookmark this SQL query"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Let every user access this bookmark"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Replace existing bookmark of same name"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Do not overwrite this query from outside the window"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "გამყოფი"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Show this query here again "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "View only"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Location of the text file"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web server upload directory"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7500,6 +7427,49 @@ msgstr ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"There is no detailed status information available for this storage engine."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s ხელმისაწვდომია ამ MySQL სერვერზე."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s გათიშულია ამ MySQL სერვერზე."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "ამ MySQL სერვერს არ აქვს %s ძრავის მხარდაჭერა."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "არასწორი მონაცემთა ბაზა"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "ცხრილის არასწორი სახელი"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Error renaming table %1$s to %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Table %s has been renamed to %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "როგორც ჩანს ცხრილი ცარიელია!"
@@ -7631,6 +7601,38 @@ msgstr "PARTITION definition"
msgid "+ Add a new value"
msgstr "ახალი სერვერის დამატება"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "No valid image path for theme %s found!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "No preview available."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "take it"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Default theme %s not found!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Theme %s not found!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Theme path not found for theme %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8778,13 +8780,13 @@ msgstr "Drop the databases that have the same names as the users."
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."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
@@ -10371,9 +10373,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
-#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
-#| "[/kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
+#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
+#| "kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
diff --git a/po/ko.po b/po/ko.po
index 551b23a37c..fe9e97efb8 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-06-16 18:18+0200\n"
"Last-Translator: \n"
"Language-Team: korean \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: Pootle 2.0.1\n"
@@ -47,10 +47,10 @@ msgstr "검색"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "검색"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "실행"
@@ -131,9 +131,9 @@ msgstr "데이터베이스 설명:"
msgid "Table comments"
msgstr "테이블 설명"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "테이블 설명"
msgid "Column"
msgstr "컬럼명"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "컬럼명"
msgid "Type"
msgstr "종류"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,12 +197,13 @@ msgstr "링크 대상:"
msgid "Comments"
msgstr "설명(코멘트)"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -213,17 +214,17 @@ msgstr "설명(코멘트)"
msgid "No"
msgstr " 아니오 "
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -334,8 +335,8 @@ msgstr "제약조건 추가"
msgid "Switch to copied database"
msgstr "복사한 테이블로 옮겨감"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -353,8 +354,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 "
-"%s여기를 클릭%s하십시오."
+"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %"
+"s여기를 클릭%s하십시오."
#: db_operations.php:600
msgid "Edit or export relational schema"
@@ -501,8 +502,8 @@ msgstr "데이터베이스 %s에 SQL 질의:"
msgid "Submit Query"
msgstr "질의 실행"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -602,7 +603,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "접근이 거부되었습니다."
@@ -726,8 +727,8 @@ msgstr "트래킹이 활성화되어 있지 않습니다."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -745,7 +746,7 @@ msgstr ""
msgid "Sum"
msgstr "계"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s는 이 MySQL 서버의 기본 스토리지 엔진입니다."
@@ -794,8 +795,8 @@ msgstr "인쇄용 보기"
msgid "Empty"
msgstr "비우기"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -873,9 +874,9 @@ msgstr ""
msgid "Status"
msgstr "상태"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -973,8 +974,8 @@ msgstr ""
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1156,11 +1157,11 @@ msgstr "선택한 사용자를 삭제"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "수정"
@@ -1733,222 +1734,12 @@ msgstr "분"
msgid "Second"
msgstr "초"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "글꼴 크기"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"php.ini 파일에 지정된 upload_max_filesize 값보다 더 큰 파일이 업로드되었습니"
-"다."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr "HTML 폼에 지정된 MAX_FILE_SIZE 값보다 더 큰 파일이 업로드되었습니다."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "임시 폴더가 없습니다."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "디스크 쓰기에 실패했습니다."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "파일 업로드 중에 알 수 없는 오류가 발생했습니다."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"업로드된 파일을 이동시킬 수 없었습니다. [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a] 참조."
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "인덱스가 설정되지 않았습니다!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "인덱스"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "고유값"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinality"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "설명(코멘트)"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "기본 키를 제거했습니다"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "인덱스 %s 를 제거했습니다"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "데이터베이스 "
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "오류"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "테이블이 없습니다"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "이 MySQL 서버는 %s 스토리지 엔진을 지원하지 않습니다."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "테이블 %s을(를) %s(으)로 변경하였습니다."
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "연결할 수 없습니다: 잘못된 설정."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "%s에 오셨습니다"
@@ -1956,8 +1747,8 @@ msgstr "%s에 오셨습니다"
#: libraries/auth/config.auth.lib.php:106
#, 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 를 사용해 설정 파"
"일을 생성할 수 있습니다."
@@ -1970,57 +1761,57 @@ msgid ""
"the administrator of the MySQL server."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "로그인"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin 설명서"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "서버:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "사용자명:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "암호:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "서버 선택"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "이 페이지를 넘기려면 쿠키 사용을 허용해야 합니다."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
"최근 %s초 동안 아무 동작이 없어 로그아웃 되었습니다. 다시 로그인해주세요."
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "MySQL 서버에 로그인할 수 없습니다"
@@ -2061,6 +1852,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "오류"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2113,6 +1912,11 @@ msgstr "테이블 수"
msgid "Data"
msgstr "데이터"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "인덱스"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2141,13 +1945,15 @@ msgid "Check Privileges"
msgstr "사용권한 보기"
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
-msgstr ""
+#, fuzzy
+#| msgid "Failed to write file to disk."
+msgid "Failed to read configuration file"
+msgstr "디스크 쓰기에 실패했습니다."
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2391,86 +2197,9 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "따옴표(quote)가 닫히지 않았음"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "구조"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "구조와 데이터 모두"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "완전한 INSERT문 작성"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "확장된 inserts"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "글꼴 크기"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3138,6 +2867,12 @@ msgstr ""
msgid "LaTeX"
msgstr "Label"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "데이터베이스 "
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4673,6 +4408,87 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "따옴표(quote)가 닫히지 않았음"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "구조"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "구조와 데이터 모두"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "완전한 INSERT문 작성"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "확장된 inserts"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4738,6 +4554,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "새 사용자 추가"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "서버 응답이 없습니다"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4810,9 +4643,9 @@ msgstr "길이/값*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4869,6 +4702,12 @@ msgstr "질의 종류"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "설명(코멘트)"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4928,23 +4767,6 @@ msgid ""
"3.11[/a]"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "서버 응답이 없습니다"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5105,8 +4927,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:275
@@ -5831,8 +5653,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6135,6 +5957,46 @@ msgstr ""
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"php.ini 파일에 지정된 upload_max_filesize 값보다 더 큰 파일이 업로드되었습니"
+"다."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr "HTML 폼에 지정된 MAX_FILE_SIZE 값보다 더 큰 파일이 업로드되었습니다."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "임시 폴더가 없습니다."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "디스크 쓰기에 실패했습니다."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "파일 업로드 중에 알 수 없는 오류가 발생했습니다."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"업로드된 파일을 이동시킬 수 없었습니다. [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a] 참조."
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6152,41 +6014,6 @@ msgstr "SQL 결과"
msgid "Generated by"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "데이터베이스가 없습니다"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6248,6 +6075,41 @@ msgstr "열(칼럼) 이름"
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "데이터베이스가 없습니다"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6270,6 +6132,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "인덱스가 설정되지 않았습니다!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "고유값"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinality"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "기본 키를 제거했습니다"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "인덱스 %s 를 제거했습니다"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6282,6 +6178,27 @@ msgstr "없음"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6524,6 +6441,19 @@ msgstr ""
msgid "This format has no options"
msgstr ""
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "테이블이 없습니다"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr ""
@@ -6911,6 +6841,59 @@ msgstr ""
msgid "Target database"
msgstr "데이터베이스 검색"
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+"SQL 질의문에 에러가 있습니다. MySQL 서버가 다음과 같은 에러를 출력했습니다. "
+"이것이 문제를 진단하는데 도움이 될 것입니다."
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr "따옴표(quote)가 닫히지 않았음"
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr "잘못된 식별자(Identifer)"
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sql_query_form.lib.php:223
#, fuzzy, php-format
msgid "Run SQL query/queries on server %s"
@@ -6968,59 +6951,6 @@ msgstr "SQL 텍스트파일의 위치"
msgid "web server upload directory"
msgstr "웹서버 업로드 디렉토리"
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-"SQL 질의문에 에러가 있습니다. MySQL 서버가 다음과 같은 에러를 출력했습니다. "
-"이것이 문제를 진단하는데 도움이 될 것입니다."
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr "따옴표(quote)가 닫히지 않았음"
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr "잘못된 식별자(Identifer)"
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7030,6 +6960,48 @@ msgstr ""
"SQL 검사기가 초기화되지 않았습니다. %s문서%s에서 설명한 php 확장모듈을 설치했"
"는지 확인해보십시오."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "이 MySQL 서버는 %s 스토리지 엔진을 지원하지 않습니다."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "테이블 %s을(를) %s(으)로 변경하였습니다."
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7152,6 +7124,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "새 사용자 추가"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7407,8 +7411,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 "
-"%s여기를 클릭%s하십시오."
+"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %"
+"s여기를 클릭%s하십시오."
#: main.php:314
msgid ""
@@ -8164,8 +8168,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 ""
#: server_privileges.php:1764
diff --git a/po/lt.po b/po/lt.po
index c32191abad..8b6c28fbea 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-04-05 15:52+0200\n"
"Last-Translator: Kęstutis \n"
"Language-Team: lithuanian \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: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -48,10 +48,10 @@ msgstr "Paieška"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Paieška"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Vykdyti"
@@ -132,9 +132,9 @@ msgstr "Duomenų bazės komentaras: "
msgid "Table comments"
msgstr "Lentelės komentarai"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Lentelės komentarai"
msgid "Column"
msgstr "Stulpelis"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Stulpelis"
msgid "Type"
msgstr "Tipas"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "Sąryšis su"
msgid "Comments"
msgstr "Komentarai"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "Komentarai"
msgid "No"
msgstr "Ne"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -332,8 +333,8 @@ msgstr "Pridėti apribojimą"
msgid "Switch to copied database"
msgstr "Pereiti į nukopijuotą duomenų bazę"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -497,8 +498,8 @@ msgstr "SQL-užklausa duomenų bazėje %s:"
msgid "Submit Query"
msgstr "Vykdyti užklausą"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -607,7 +608,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Priėjimas uždraustas"
@@ -730,11 +731,11 @@ msgstr "Sekimas yra neaktyvus."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -751,7 +752,7 @@ msgstr "Replikavimas"
msgid "Sum"
msgstr "Sumos"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s yra standartinis saugojimo variklis šiame MySQL serveryje."
@@ -800,8 +801,8 @@ msgstr "Spausdinti struktūrą"
msgid "Empty"
msgstr "Išvalyti"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -880,9 +881,9 @@ msgstr "Atnaujinta"
msgid "Status"
msgstr "Būsena"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -976,11 +977,11 @@ msgstr "Atvaizdis įrašytas faile %s."
#: import.php:58
#, 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."
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:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1164,11 +1165,11 @@ msgstr "Šalinami pažymėti vartotojai"
msgid "Close"
msgstr "Uždaryti"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Redaguoti"
@@ -1721,230 +1722,12 @@ msgstr "Minutė"
msgid "Second"
msgstr "Sekundės"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Šrifto dydis"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Įkeltas failas viršija upload_max_filesize nurodymą faile php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Įkeltas failas viršija MAX_FILE_SIZE nurodymą kuris buvo nustatytas HTML "
-"formoje."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Įkeliamas failas buvo tik dalinai įkeltas."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Trūksta laikino katalogo."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Nepavyko įrašyti failo į diską."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Failo įkėlimas sustabdytas dėl failo plėtinio."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Nežinoma klaida failų įkėlime."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Klaida perkeliant įkeltą failą, žiūrėti [a@./Documentation."
-"html#faq1_11@Documentation]DUK 1.11[/a]"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Nėra aprašytų indeksų!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeksai"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unikalus"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Suspausta"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Elementų skaičius"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Komentaras"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Panaikintas pirminis raktas"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeksas %s ištrintas"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Žurnalai %1$s ir %2$s atrodo vienodi ir vienas iš jų gali būti pašalintas."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Duomenų bazės"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Klaida"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Pakeista %1$d eilutė."
-msgstr[1] "Pakeistos %1$d eilutės."
-msgstr[2] "Pakeista %1$d eilučių."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Ištrinta %1$d eilutė."
-msgstr[1] "Ištrintos %1$d eilutės."
-msgstr[2] "Ištrinta %1$d eilučių."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Įterpta %1$d eilutė."
-msgstr[1] "Įterptos %1$d eilutės."
-msgstr[2] "Įterpta %1$d eilučių."
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not save configuration"
-msgid "Could not save recent table"
-msgstr "Nepavyko išsaugoti konfigūracijos"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Suskaičiuoti lenteles"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Nėra jokių sukonfigūruotų serverių"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Apie šio Saugojimo Variklio būseną nėra išsamios informacijos."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s galimas šiame MySQL serveryje."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s šiame MySQL serveryje yra išjungtas."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Šis MySQL serveris nepalaiko %s saugojimo variklio."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Neteisingas duomenų bazės vardas"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Neteisingas lentelės vardas"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Klaida pervadinant lentelę iš %1$s į %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Lentelė %s pervadinta į %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Nerasta tinkamo paveiksliukų kelio temai %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Peržiūra negalima."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "pasirinkti"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Standartinė tema %s nerasta!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s nerasta!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Kelias iki temos nerastas temai %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Neįmanoma prisijungti: neteisingi duomenys."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Jūs naudojate %s"
@@ -1952,8 +1735,8 @@ msgstr "Jūs naudojate %s"
#: libraries/auth/config.auth.lib.php:106
#, 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ą."
@@ -1971,50 +1754,50 @@ msgstr ""
"stoties adresą, prisijungimo vardą ir slaptažodį) ir įsitikinkite ar jie "
"sutampa su duomenimis gautais iš darbinės stoties administratoriaus."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Prisijungti"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin dokumentacija"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "Jūs galite įvesti serverio vardą/IP adresą ir prievadą atskirtą tarpu."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Darbinė stotis"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Naudotojo vardas:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Slaptažodis:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Pasirinkti serverį"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Slapukai turi būti priimami."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"Prisijungimą be slaptažodžio draudžia nustatymai (žiūrėti AllowNoPassword)."
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -2022,8 +1805,8 @@ msgstr ""
"Daugiau nei %s sekundžių nebuvo atlikta jokių veiksmų, prašome prisijungti "
"iš naujo"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Nepavyksta prisijungti prie MySQL darbinės stoties"
@@ -2062,6 +1845,14 @@ msgstr "PBMS klaida"
msgid "PBMS connection failed:"
msgstr "PBMS prisijungimo klaida:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Klaida"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS gavimas BLOB informacijos nepavyko:"
@@ -2114,6 +1905,11 @@ msgstr "Lentelės"
msgid "Data"
msgstr "Duomenys"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeksai"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2143,13 +1939,13 @@ msgstr "Patikrinti privilegijas"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Nepavyko išsaugoti konfigūracijos"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2393,80 +2189,9 @@ msgstr "Nėra failų išsiuntimui"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Abu"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-#, fuzzy
-#| msgid "Height"
-msgid "Right"
-msgstr "Aukštis"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Atverti"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Uždarytas"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "struktūra"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "duomenys"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "struktūra ir duomenys"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Greitas - rodomi tik minimalūs nustatymai"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Individualizuotas - rodyti visus nustatymus"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-"Individualizuotas - kaip paminėtas, bet be greito/adaptuoto pasirinkimo"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "užbaigti įterpimus"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "praplėsti įterpimus"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "abu iš paminėtų"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "nei vieną iš paminėtų"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Šrifto dydis"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3120,6 +2845,12 @@ msgstr "Naudoti importavimo ir eksportavimo katalogus ir suspaudimo nustatymus"
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Duomenų bazės"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Duomenų bazių rodymo nustatymai"
@@ -4701,6 +4432,81 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Neteisingas IP adresas: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Abu"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+#, fuzzy
+#| msgid "Height"
+msgid "Right"
+msgstr "Aukštis"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Atverti"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Uždarytas"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "struktūra"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "duomenys"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "struktūra ir duomenys"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Greitas - rodomi tik minimalūs nustatymai"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Individualizuotas - rodyti visus nustatymus"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+"Individualizuotas - kaip paminėtas, bet be greito/adaptuoto pasirinkimo"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "užbaigti įterpimus"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "praplėsti įterpimus"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "abu iš paminėtų"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "nei vieną iš paminėtų"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4771,6 +4577,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "Pridėti naują serverį"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Serveris neatsako"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Detalės..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4845,9 +4668,9 @@ msgstr "Ilgis/reikšmės*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4906,6 +4729,11 @@ msgstr "Saugumas"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Komentaras"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4970,23 +4798,6 @@ msgstr ""
"Gali būti apytikslis. Žiūrėkite [a@./Documentation."
"html#faq3_11@Documentation]DUK 3.11[/a]"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Serveris neatsako"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Detalės..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5127,8 +4938,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 "
@@ -5865,8 +5676,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6168,6 +5979,46 @@ msgstr "Rodinys (Views)"
msgid "Export contents"
msgstr "Eksportuoti turinį"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "Įkeltas failas viršija upload_max_filesize nurodymą faile php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Įkeltas failas viršija MAX_FILE_SIZE nurodymą kuris buvo nustatytas HTML "
+"formoje."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Įkeliamas failas buvo tik dalinai įkeltas."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Trūksta laikino katalogo."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Nepavyko įrašyti failo į diską."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Failo įkėlimas sustabdytas dėl failo plėtinio."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Nežinoma klaida failų įkėlime."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Klaida perkeliant įkeltą failą, žiūrėti [a@./Documentation."
+"html#faq1_11@Documentation]DUK 1.11[/a]"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6187,41 +6038,6 @@ msgstr "SQL rezultatas"
msgid "Generated by"
msgstr "Sugeneravo"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Sekanti struktūra buvo sukurta arba pakeista. Čia galite:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Peržiūrėti struktūros turinį paspaudžiant ant vardo"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Keisti bet kuriuos iš šių nustatymų spauskite atitinkamą „Nustatymai“ nuorodą"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Keisti jo struktūrą spauskite „Struktūra“ nuorodą"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Eiti į duomenų bazę"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "nustatymai"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Eiti į lentelę"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Eiti į rodinį (view)"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6285,6 +6101,41 @@ msgstr "Stulpelių vardai"
msgid "This plugin does not support compressed imports!"
msgstr "Priedas nepalaiko suglaudintų importų!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Sekanti struktūra buvo sukurta arba pakeista. Čia galite:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Peržiūrėti struktūros turinį paspaudžiant ant vardo"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Keisti bet kuriuos iš šių nustatymų spauskite atitinkamą „Nustatymai“ nuorodą"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Keisti jo struktūrą spauskite „Struktūra“ nuorodą"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Eiti į duomenų bazę"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "nustatymai"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Eiti į lentelę"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Eiti į rodinį (view)"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6310,6 +6161,41 @@ msgstr ""
"XML failo specifikacija yra neteisinga arba neišbaigta. Prašome pataisyti "
"klaidas ir bandyti dar kartą."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Nėra aprašytų indeksų!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unikalus"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Suspausta"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Elementų skaičius"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Panaikintas pirminis raktas"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeksas %s ištrintas"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Žurnalai %1$s ir %2$s atrodo vienodi ir vienas iš jų gali būti pašalintas."
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6322,6 +6208,30 @@ msgstr "Nėra"
msgid "Convert to Kana"
msgstr "Konvertuoti į Kana"
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Pakeista %1$d eilutė."
+msgstr[1] "Pakeistos %1$d eilutės."
+msgstr[2] "Pakeista %1$d eilučių."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Ištrinta %1$d eilutė."
+msgstr[1] "Ištrintos %1$d eilutės."
+msgstr[2] "Ištrinta %1$d eilučių."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Įterpta %1$d eilutė."
+msgstr[1] "Įterptos %1$d eilutės."
+msgstr[2] "Įterpta %1$d eilučių."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6564,6 +6474,24 @@ msgstr "Atsiųsti iš naujo navigacijos rėmelį"
msgid "This format has no options"
msgstr "Šis formatas neturi nustatymų"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Could not save recent table"
+msgstr "Nepavyko išsaugoti konfigūracijos"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Suskaičiuoti lenteles"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Nėra jokių sukonfigūruotų serverių"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Negerai"
@@ -6951,63 +6879,6 @@ msgstr "Skirtumas"
msgid "Target database"
msgstr "Į duomenų bazę"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Vykdyti SQL sakinius serveryje %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Vykdyti SQL sakinius duomenų bazėje %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Išvalyti"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Stulpelių vardai"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Šios SQL užklausą pasižymėti kaip"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Leisti kitiems vartotojams naudotis šia žyme"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Pakeisti jau egzistuojančią žymę tuo pačiu vardu"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Nekeisti šios užklausos už aktyvaus lango ribų."
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Skyriklis"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Rodyti šią užklausą vėl "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Peržiūra"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Tekstinio failo vieta"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web serverio katalogas atsiuntimams"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7070,6 +6941,63 @@ msgstr "Klaidingas vardas"
msgid "Unknown Punctuation String"
msgstr "Klaidinga skyryba"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Vykdyti SQL sakinius serveryje %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Vykdyti SQL sakinius duomenų bazėje %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Išvalyti"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Stulpelių vardai"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Šios SQL užklausą pasižymėti kaip"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Leisti kitiems vartotojams naudotis šia žyme"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Pakeisti jau egzistuojančią žymę tuo pačiu vardu"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Nekeisti šios užklausos už aktyvaus lango ribų."
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Skyriklis"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Rodyti šią užklausą vėl "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Peržiūra"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Tekstinio failo vieta"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web serverio katalogas atsiuntimams"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7079,6 +7007,48 @@ msgstr ""
"Neveikia SQL interpretatorius. Prašome patikrinkite ar yra suinstaliuoti "
"visi privalomi php moduliai, nurodyti %sdokumentacijoje%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Apie šio Saugojimo Variklio būseną nėra išsamios informacijos."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s galimas šiame MySQL serveryje."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s šiame MySQL serveryje yra išjungtas."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Šis MySQL serveris nepalaiko %s saugojimo variklio."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Neteisingas duomenų bazės vardas"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Neteisingas lentelės vardas"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Klaida pervadinant lentelę iš %1$s į %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Lentelė %s pervadinta į %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Lentelė atrodo tuščia!"
@@ -7202,6 +7172,38 @@ msgstr "SKAIDINIO (PARTITION) apibrėžimas"
msgid "+ Add a new value"
msgstr "Pridėti naują serverį"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Nerasta tinkamo paveiksliukų kelio temai %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Peržiūra negalima."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "pasirinkti"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Standartinė tema %s nerasta!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s nerasta!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Kelias iki temos nerastas temai %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8291,8 +8293,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 ""
"Pastaba: phpMyAdmin gauna vartotojų teises tiesiai iš MySQL privilegijų "
"lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų "
@@ -9784,9 +9786,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
-#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
-#| "[/kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
+#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
+#| "kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
diff --git a/po/lv.po b/po/lv.po
index 3319fcae19..fda3512792 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -47,10 +47,10 @@ msgstr "Meklēt"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "Meklēt"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Aiziet!"
@@ -129,9 +129,9 @@ msgstr "Datubāzes komentārs: "
msgid "Table comments"
msgstr "Komentārs tabulai"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "Komentārs tabulai"
msgid "Column"
msgstr "Kolonnu nosaukumi"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "Kolonnu nosaukumi"
msgid "Type"
msgstr "Tips"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,12 +197,13 @@ msgstr "Linki uz"
msgid "Comments"
msgstr "Komentāri"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -213,17 +214,17 @@ msgstr "Komentāri"
msgid "No"
msgstr "Nē"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -334,8 +335,8 @@ msgstr "Pievienot ierobežojumus"
msgid "Switch to copied database"
msgstr "Pārslēgties uz nokopēto datubāzi"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -509,8 +510,8 @@ msgstr "SQL vaicājums uz datubāzes %s:"
msgid "Submit Query"
msgstr "Izpildīt vaicājumu"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -611,7 +612,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Pieeja aizliegta"
@@ -739,8 +740,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -759,7 +760,7 @@ msgstr "Relācijas"
msgid "Sum"
msgstr "Kopumā"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
@@ -808,8 +809,8 @@ msgstr "Izdrukas versija"
msgid "Empty"
msgstr "Iztukšot"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -887,9 +888,9 @@ msgstr ""
msgid "Status"
msgstr "Statuss"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -987,8 +988,8 @@ msgstr "Damps tika saglabāts failā %s."
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1168,11 +1169,11 @@ msgstr "Dzēst izvēlētos lietotājus"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Labot"
@@ -1796,221 +1797,12 @@ msgstr "lietošanā"
msgid "Second"
msgstr "sekundē"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr ""
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-#, fuzzy
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Nav definēti indeksi!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeksi"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unikālais"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinalitāte"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Komentāri"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primārā atslēga tika izdzēsta"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indekss %s tika izdzēsts"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Datubāzes"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Kļūda"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Rindas nav iezīmētas"
-msgstr[1] "Rindas nav iezīmētas"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Rindas nav iezīmētas"
-msgstr[1] "Rindas nav iezīmētas"
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Nav tabulu"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabula %s tika pārsaukta par %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "izmantot šo stilu"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Nevar pieslēgties: kļūda konfigurācijā."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Laipni lūgti %s"
@@ -2018,8 +1810,8 @@ msgstr "Laipni lūgti %s"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
@@ -2034,57 +1826,57 @@ msgstr ""
"failā, un pārliecinieties, ka tie atbilst informācijai, ko Jums deva MySQL "
"servera administrators."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Ieiet"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin dokumentācija"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Serveris"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Lietotājvārds:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Parole:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Servera izvēle"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "\"Cookies\" ir jābūt atļautiem aiz šī punkta."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
"Nebija aktivitātes vairāk kā %s sekunžu laikā, lūdzu autorizējieties vēlreiz"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Nevar pieslēgties MySQL serverim"
@@ -2125,6 +1917,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "MySQL konekcijas kārtošana"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Kļūda"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2177,6 +1977,11 @@ msgstr "Tabulas"
msgid "Data"
msgstr "Dati"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeksi"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2206,13 +2011,13 @@ msgid "Check Privileges"
msgstr "Pārbaudīt privilēģijas"
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr ""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2458,85 +2263,8 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Neaizvērtas pēdiņas"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Struktūra"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Struktūra un dati"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Pilnas INSERT izteiksmes"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Paplašinātas INSERT izteiksmes"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
+#: libraries/Config.class.php:1190
+msgid "Font size"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -3206,6 +2934,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Datubāzes"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4736,6 +4470,87 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Neaizvērtas pēdiņas"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Struktūra"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Struktūra un dati"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Pilnas INSERT izteiksmes"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Paplašinātas INSERT izteiksmes"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4803,6 +4618,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "Pievienot jaunu lietotāju"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Serveris neatbild"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4875,9 +4707,9 @@ msgstr "Garums/Vērtības*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4937,6 +4769,12 @@ msgstr "Vaicājuma tips"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Komentāri"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4997,23 +4835,6 @@ msgid ""
"3.11[/a]"
msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Serveris neatbild"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5177,8 +4998,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:275
@@ -5908,8 +5729,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6227,6 +6048,43 @@ msgstr ""
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+#, fuzzy
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6244,41 +6102,6 @@ msgstr "SQL rezultāts"
msgid "Generated by"
msgstr "Uzģenerēja"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Nav datubāzu"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6340,6 +6163,41 @@ msgstr "Kolonnu nosaukumi"
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Nav datubāzu"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6364,6 +6222,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Nav definēti indeksi!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unikālais"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinalitāte"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primārā atslēga tika izdzēsta"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indekss %s tika izdzēsts"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6376,6 +6268,29 @@ msgstr "Nav"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Rindas nav iezīmētas"
+msgstr[1] "Rindas nav iezīmētas"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Rindas nav iezīmētas"
+msgstr[1] "Rindas nav iezīmētas"
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6620,6 +6535,19 @@ msgstr ""
msgid "This format has no options"
msgstr "Šim formātam nav opciju"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Nav tabulu"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "nav OK"
@@ -7010,64 +6938,6 @@ msgstr ""
msgid "Target database"
msgstr "Meklēt datubāzē"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Kalendārs"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Kolonnu nosaukumi"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Saglabāt šo SQL vaicājumu"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Nepārrakstīt šo vaicājumu ārpus šī loga"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Rādīt šo vaicājumu šeit atkal "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Tikai apskatīt"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Teksta faila atrašanās vieta"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web servera augšupielādes direktorija"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7131,6 +7001,64 @@ msgstr "Nederīgs identifikators"
msgid "Unknown Punctuation String"
msgstr "Nezināmā punktuācijas zīme"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Kalendārs"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Kolonnu nosaukumi"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Saglabāt šo SQL vaicājumu"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Nepārrakstīt šo vaicājumu ārpus šī loga"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Rādīt šo vaicājumu šeit atkal "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Tikai apskatīt"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Teksta faila atrašanās vieta"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web servera augšupielādes direktorija"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7140,6 +7068,48 @@ 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."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabula %s tika pārsaukta par %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7268,6 +7238,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Pievienot jaunu lietotāju"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "izmantot šo stilu"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8354,13 +8356,13 @@ msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem."
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."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
diff --git a/po/mk.po b/po/mk.po
index 17a497401c..f3756cffa9 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-05-19 17:04+0200\n"
"Last-Translator: \n"
"Language-Team: macedonian_cyrillic \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: Pootle 2.0.5\n"
@@ -48,10 +48,10 @@ msgstr "Пребарување"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Пребарување"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "OK"
@@ -130,9 +130,9 @@ msgstr "Коментар на базата на податоци:"
msgid "Table comments"
msgstr "Коментар на табелата"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Коментар на табелата"
msgid "Column"
msgstr "Имиња на колони"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Имиња на колони"
msgid "Type"
msgstr "Тип"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "Врски кон"
msgid "Comments"
msgstr "Коментари"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "Коментари"
msgid "No"
msgstr "Не"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -333,8 +334,8 @@ msgstr "Додади ограничувања"
msgid "Switch to copied database"
msgstr "Префрли се на копираната база на податоци"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -508,8 +509,8 @@ msgstr "SQL упит на базата на податоци %s:"
msgid "Submit Query"
msgstr "Изврши SQL"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -612,7 +613,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Пристапот не е допуштен"
@@ -740,8 +741,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -760,7 +761,7 @@ msgstr "Релации"
msgid "Sum"
msgstr "Вкупно"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s е основно складиште на овој MySQL сервер."
@@ -809,8 +810,8 @@ msgstr "Преглед за печатење"
msgid "Empty"
msgstr "Испразни"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -883,9 +884,9 @@ msgstr "Ажурирано"
msgid "Status"
msgstr "Статус"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -983,8 +984,8 @@ msgstr "Содржината на базата на податоци е сочу
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1163,11 +1164,11 @@ msgstr "Избриши ги селектираните корисници"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Промени"
@@ -1792,223 +1793,12 @@ msgstr "се користи"
msgid "Second"
msgstr "во секунда"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr ""
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-#, fuzzy
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Бројот на записи може да биде приближен. За подетални информации види FAQ "
-"3.11"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Клучот не е дефиниран!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Клучеви"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Единствен"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Кардиналност"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Коментари"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Примарниот клуч е избришан"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Клучот %s е избиршан"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "База на податоци"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Грешка"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Нема селектирани записи"
-msgstr[1] "Нема селектирани записи"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Нема селектирани записи"
-msgstr[1] "Нема селектирани записи"
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Нема табела"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Нема детални информации за статусот на овој вид на складиште."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s е достапен на овој MySQL сервер."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s е оневозможен на овој MySQL сервер."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Овој MySQL сервер не подржува %s вид на складиште."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Табелата %s е преименувана во %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "превземи"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Не може да се поврзам: лоши подесувања."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "%s Добредојдовте"
@@ -2016,8 +1806,8 @@ msgstr "%s Добредојдовте"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
@@ -2032,49 +1822,49 @@ msgstr ""
"config.inc.php и уверите се дека одговараат на податоците кои сте ги добили "
"од администраторот на MySQL серверот."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Најави се"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin документација"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Сервер"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Корисничко име:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Лозинка:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Избор на сервер"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "вашиот веб прелистувач треба да допушти cookies"
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -2082,8 +1872,8 @@ msgstr ""
"Немаше никаква активност %s или повеќе секунди, ве молиме најавете се "
"повторно"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Не можам да се пријавам на MySQL серверот"
@@ -2124,6 +1914,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Колација за MySQL врска"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Грешка"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2176,6 +1974,11 @@ msgstr "Табели"
msgid "Data"
msgstr "Податоци"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Клучеви"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2205,13 +2008,13 @@ msgid "Check Privileges"
msgstr "Провери привилегии"
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr ""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2460,85 +2263,8 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Наводникот не е затворен"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Структура"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Структура и податоци"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Комплетен INSERT (со имиња на полињата)"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Проширен INSERT"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
+#: libraries/Config.class.php:1190
+msgid "Font size"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -3211,6 +2937,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "База на податоци"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4747,6 +4479,87 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Наводникот не е затворен"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Структура"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Структура и податоци"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Комплетен INSERT (со имиња на полињата)"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Проширен INSERT"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4814,6 +4627,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "Додади нов корисник"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Серверот не одговара"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4886,9 +4716,9 @@ msgstr "Должина/Вредност*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4948,6 +4778,12 @@ msgstr "Вид на упит"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Коментари"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5012,23 +4848,6 @@ msgstr ""
"Бројот на записи може да биде приближен. За подетални информации види FAQ "
"3.11"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Серверот не одговара"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5192,8 +5011,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:275
@@ -5943,8 +5762,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6263,6 +6082,45 @@ msgstr "Поглед"
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+#, fuzzy
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Бројот на записи може да биде приближен. За подетални информации види FAQ "
+"3.11"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6280,41 +6138,6 @@ msgstr "SQL резултат"
msgid "Generated by"
msgstr "Генерирал"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Базата на податоци не постои"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6376,6 +6199,41 @@ msgstr "Имиња на колони"
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Базата на податоци не постои"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6400,6 +6258,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Клучот не е дефиниран!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Единствен"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Кардиналност"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Примарниот клуч е избришан"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Клучот %s е избиршан"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6412,6 +6304,29 @@ msgstr "нема"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Нема селектирани записи"
+msgstr[1] "Нема селектирани записи"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Нема селектирани записи"
+msgstr[1] "Нема селектирани записи"
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6656,6 +6571,19 @@ msgstr ""
msgid "This format has no options"
msgstr "Не постојат опции за овој формат"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Нема табела"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "не е како што треба"
@@ -7047,64 +6975,6 @@ msgstr ""
msgid "Target database"
msgstr "Пребарување низ базата на податоци"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Изврши SQL упит(и) на базата %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Изврши SQL упит(и) на базата %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Календар"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Имиња на колони"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Запамти SQL упит"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "дади дозвола на секој корисник да пристапува на овој упит."
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Не го препишувај овој упит надвор од овој прозорец"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Прикажи го повторно овој упит"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Види само"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Локација на текстуалната податотека"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "директориум за праќање на веб серверот "
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7167,6 +7037,64 @@ msgstr "Неисправен идентификатор"
msgid "Unknown Punctuation String"
msgstr "Непознат стринг за интерпункција"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Изврши SQL упит(и) на базата %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Изврши SQL упит(и) на базата %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Календар"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Имиња на колони"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Запамти SQL упит"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "дади дозвола на секој корисник да пристапува на овој упит."
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Не го препишувај овој упит надвор од овој прозорец"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Прикажи го повторно овој упит"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Види само"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Локација на текстуалната податотека"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "директориум за праќање на веб серверот "
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7176,6 +7104,48 @@ msgstr ""
"SQL валидаторот не можеше да биде стартуван. Проверете да ли се инсталирани "
"неопходните PHP екстензии опишане во %sдокументацијата%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Нема детални информации за статусот на овој вид на складиште."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s е достапен на овој MySQL сервер."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s е оневозможен на овој MySQL сервер."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Овој MySQL сервер не подржува %s вид на складиште."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Табелата %s е преименувана во %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7305,6 +7275,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Додади нов корисник"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "превземи"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8418,8 +8420,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 "
"табелата на привилегии. Содржината на оваа табела табела може да се "
diff --git a/po/ml.po b/po/ml.po
index 06ac044e15..323e60d696 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -5,14 +5,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-02-10 14:03+0100\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Malayalam \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"
"X-Generator: Translate Toolkit 1.7.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -46,10 +46,10 @@ msgstr ""
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -62,18 +62,18 @@ msgstr ""
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr ""
@@ -128,9 +128,9 @@ msgstr ""
msgid "Table comments"
msgstr ""
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -139,12 +139,12 @@ msgstr ""
msgid "Column"
msgstr ""
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -154,9 +154,9 @@ msgstr ""
msgid "Type"
msgstr ""
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -194,12 +194,13 @@ msgstr ""
msgid "Comments"
msgstr ""
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -210,17 +211,17 @@ msgstr ""
msgid "No"
msgstr ""
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -328,8 +329,8 @@ msgstr ""
msgid "Switch to copied database"
msgstr ""
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -491,8 +492,8 @@ msgstr ""
msgid "Submit Query"
msgstr ""
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -588,7 +589,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr ""
@@ -705,8 +706,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -724,7 +725,7 @@ msgstr ""
msgid "Sum"
msgstr ""
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
@@ -773,8 +774,8 @@ msgstr ""
msgid "Empty"
msgstr ""
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -847,9 +848,9 @@ msgstr ""
msgid "Status"
msgstr ""
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -941,8 +942,8 @@ msgstr ""
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1108,11 +1109,11 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr ""
@@ -1639,216 +1640,12 @@ msgstr ""
msgid "Second"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr ""
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr ""
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr ""
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr ""
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr ""
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr ""
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr ""
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr ""
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr ""
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr ""
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr ""
@@ -1856,8 +1653,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
@@ -1868,56 +1665,56 @@ msgid ""
"the administrator of the MySQL server."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr ""
@@ -1956,6 +1753,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr ""
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2008,6 +1813,11 @@ msgstr ""
msgid "Data"
msgstr ""
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr ""
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2035,13 +1845,13 @@ msgid "Check Privileges"
msgstr ""
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr ""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2284,76 +2094,8 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr ""
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr ""
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr ""
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr ""
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr ""
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
+#: libraries/Config.class.php:1190
+msgid "Font size"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2984,6 +2726,12 @@ msgstr ""
msgid "LaTeX"
msgstr ""
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr ""
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4451,6 +4199,78 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr ""
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr ""
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr ""
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr ""
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr ""
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4514,6 +4334,23 @@ msgstr ""
msgid "Add a new Event"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4581,9 +4418,9 @@ msgstr ""
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4630,6 +4467,11 @@ msgstr ""
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr ""
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4686,23 +4528,6 @@ msgid ""
"3.11[/a]"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4841,8 +4666,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:275
@@ -5532,8 +5357,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -5814,6 +5639,42 @@ msgstr ""
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5831,40 +5692,6 @@ msgstr ""
msgid "Generated by"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -5924,6 +5751,40 @@ msgstr ""
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -5946,6 +5807,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr ""
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr ""
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr ""
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -5956,6 +5851,27 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr ""
@@ -6194,6 +6110,18 @@ msgstr ""
msgid "This format has no options"
msgstr ""
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr ""
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr ""
@@ -6563,6 +6491,57 @@ msgstr ""
msgid "Target database"
msgstr ""
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sql_query_form.lib.php:223
#, php-format
msgid "Run SQL query/queries on server %s"
@@ -6618,57 +6597,6 @@ msgstr ""
msgid "web server upload directory"
msgstr ""
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6676,6 +6604,48 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr ""
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -6780,6 +6750,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr ""
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7728,8 +7730,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 ""
#: server_privileges.php:1764
diff --git a/po/mn.po b/po/mn.po
index 8b23fa9368..2c7564d890 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -46,10 +46,10 @@ msgstr "Хайх"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -62,18 +62,18 @@ msgstr "Хайх"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Яв"
@@ -128,9 +128,9 @@ msgstr "ӨС-ийн тайлбар: "
msgid "Table comments"
msgstr "Хүснэгтийн тайлбар"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -141,12 +141,12 @@ msgstr "Хүснэгтийн тайлбар"
msgid "Column"
msgstr "Баганын нэрс"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -156,9 +156,9 @@ msgstr "Баганын нэрс"
msgid "Type"
msgstr "Төрөл"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -196,12 +196,13 @@ msgstr "Холбоос"
msgid "Comments"
msgstr "Тайлбар"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -212,17 +213,17 @@ msgstr "Тайлбар"
msgid "No"
msgstr "Үгүй"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -334,8 +335,8 @@ msgstr "Тогтмол нэмэх"
msgid "Switch to copied database"
msgstr "Хуулагдсан ӨС руу шилжих"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -509,8 +510,8 @@ msgstr "ӨС %s дахь SQL-асуулт:"
msgid "Submit Query"
msgstr "Асуултыг илгээх"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -615,7 +616,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Хандах эрхгүй"
@@ -743,8 +744,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -762,7 +763,7 @@ msgstr "Олшруулалт"
msgid "Sum"
msgstr "Нийт"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s нь уг MySQL сервэрийн анхдагч агуулах хөдөлгүүр байна."
@@ -811,8 +812,8 @@ msgstr "Хэвлэхээр харах"
msgid "Empty"
msgstr "Хоосон"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -889,9 +890,9 @@ msgstr ""
msgid "Status"
msgstr "Статус"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -984,8 +985,8 @@ msgstr "Асгалт %s файлд хадгалагдсан."
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1165,11 +1166,11 @@ msgstr "Сонгогдсон хэрэглэгчдийг хасах"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Засах"
@@ -1802,222 +1803,12 @@ msgstr "хэрэглэгдэж байна"
msgid "Second"
msgstr "секундэд"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Үсгийн хэмжээ"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Индекс тодорхойлогдоогүй!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Индексүүд"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Үл давтагдах"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Ерөнхий"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr ""
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Үндсэн түлхүүр устгагдлаа"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Индекс %s нь устгагдсан"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Өгөгдлийн сангууд"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Алдаа"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Сонгогдсон мөргүй"
-msgstr[1] "Сонгогдсон мөргүй"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Сонгогдсон мөргүй"
-msgstr[1] "Сонгогдсон мөргүй"
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Select Tables"
-msgid "Recent tables"
-msgstr "Хүснэгтүүд сонго"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Энд уг агуулах хөдөлгүүрийн дэлгэрэнгүй төлвийн мэдээлэл алга."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s нь уг MySQL сервэрт идэвхтэй байна."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s нь уг MySQL сервэр дээр хаалттай байна."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Энэ MySQL сервэр нь %s агуулах хөдөлгүүрийг дэмжихгүй."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Буруу өгөгдлийн сан"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Хүснэгтийн буруу нэр"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Хүснэгт %s-ын нэр %s болж өөрчлөгдлөө"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Сэдэв %s-д олдсон зургийн зам буруу байна!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Боломжит харагдац байхгүй байна."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "авах"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Анхдагч сэдэв %s байхгүй байна!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Сэдэв %s олдсонгүй!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Сэдэв %s сэдвийн зам олдохгүй байна!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Холбогдсонгүй: тохируулга буруу."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "%s-д тавтай морилно уу"
@@ -2025,11 +1816,11 @@ msgstr "%s-д тавтай морилно уу"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
msgid ""
@@ -2041,56 +1832,56 @@ msgstr ""
"phpMyAdmin нь MySQL сервэр лүү холбогдох гэсэн ч, сервэр хүлээн авсангүй. "
"config.inc.php дэх сервэр, хэрэглэгчийн нэр болон нууц үгээ шалга."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Нэвтрэх"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin баримтжилт"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Сервэр"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Нэвтрэгч:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Нууц үг:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Сервэр сонго"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Энэ газарт Cookies нээлттэй байх ёстой."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "%s секунд ба түүнээс их идэвхгүй байжээ, дахин нэвтэрнэ үү"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "MySQL руу нэвтэрч чадсангүй"
@@ -2131,6 +1922,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "MySQL холболтын кодлол"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Алдаа"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2183,6 +1982,11 @@ msgstr "Хүснэгт"
msgid "Data"
msgstr "Өгөгдөл"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Индексүүд"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2216,13 +2020,13 @@ msgstr "Онцгой эрх шалгах"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2471,85 +2275,9 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Хаагдаагүй хашилт"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr ""
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Бүтэц ба өгөгдөл"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Оруулалтыг дуусгах"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Өргөтгөсөн оруулалт"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Үсгийн хэмжээ"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3215,6 +2943,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Өгөгдлийн сангууд"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4736,6 +4470,86 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Хаагдаагүй хашилт"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr ""
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Бүтэц ба өгөгдөл"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Оруулалтыг дуусгах"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Өргөтгөсөн оруулалт"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4804,6 +4618,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "Шинэ хэрэглэгч нэмэх"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Сервэрээс хариу алга"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4876,9 +4707,9 @@ msgstr "Урт/Утгууд*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4937,6 +4768,11 @@ msgstr "Асуултын төрөл"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr ""
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4997,23 +4833,6 @@ msgid ""
"3.11[/a]"
msgstr "May be approximate. See FAQ 3.11"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Сервэрээс хариу алга"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5181,12 +5000,12 @@ msgstr ""
#| "happen: %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:275
msgid "use this for future exports"
@@ -5941,8 +5760,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6260,6 +6079,42 @@ msgstr "Харц"
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6277,40 +6132,6 @@ msgstr "SQL-үр дүн"
msgid "Generated by"
msgstr "Үүсгэгч"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6373,6 +6194,40 @@ msgstr "Баганын нэрс"
msgid "This plugin does not support compressed imports!"
msgstr "Энэ нэмэлт нь шахагдсан оруулалтыг дэмжихгүй!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6397,6 +6252,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Индекс тодорхойлогдоогүй!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Үл давтагдах"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Ерөнхий"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Үндсэн түлхүүр устгагдлаа"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Индекс %s нь устгагдсан"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6409,6 +6298,29 @@ msgstr "Байхгүй"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Сонгогдсон мөргүй"
+msgstr[1] "Сонгогдсон мөргүй"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Сонгогдсон мөргүй"
+msgstr[1] "Сонгогдсон мөргүй"
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6653,6 +6565,22 @@ msgstr ""
msgid "This format has no options"
msgstr "Энэ тогтнол сонголтгүй"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Recent tables"
+msgstr "Хүснэгтүүд сонго"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Бэлэн биш"
@@ -7041,63 +6969,6 @@ msgstr ""
msgid "Target database"
msgstr ""
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "%s сервэр дээр SQL асуудал/асуудлууд ажиллуулах"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Өгөгдлийн сан %s дээрх SQL асуултыг ажиллуулах"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Баганын нэрс"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Энэ SQL-асуулт-ыг тэмдэглэх"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Өмнөх адил нэртэй тэмдэглэлийг солих"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Цонхны гаднаас энэ асуултыг давхарлахгүй байх"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Зааглагч"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Уг асуултыг энд дахин харуулах "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Зөвхөн харах"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Бичвэрфайлын байрлал"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web-сервэр түлхэх хавтас"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7160,6 +7031,63 @@ msgstr "Буруу тодорхойлогч"
msgid "Unknown Punctuation String"
msgstr "Тэмдэгт мөрийн үл мэдэх цэг тэмдэглэл"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "%s сервэр дээр SQL асуудал/асуудлууд ажиллуулах"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Өгөгдлийн сан %s дээрх SQL асуултыг ажиллуулах"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Баганын нэрс"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Энэ SQL-асуулт-ыг тэмдэглэх"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Өмнөх адил нэртэй тэмдэглэлийг солих"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Цонхны гаднаас энэ асуултыг давхарлахгүй байх"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Зааглагч"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Уг асуултыг энд дахин харуулах "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Зөвхөн харах"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Бичвэрфайлын байрлал"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web-сервэр түлхэх хавтас"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7169,6 +7097,48 @@ msgstr ""
"SQL баталгаажуулагч эхлэгдсэнгүй. Хэрэв PHP өргөтгөл суугдсан бол шалгана "
"уу, %sбаримтжуулалд%s тодорхойлогдсон."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Энд уг агуулах хөдөлгүүрийн дэлгэрэнгүй төлвийн мэдээлэл алга."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s нь уг MySQL сервэрт идэвхтэй байна."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s нь уг MySQL сервэр дээр хаалттай байна."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Энэ MySQL сервэр нь %s агуулах хөдөлгүүрийг дэмжихгүй."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Буруу өгөгдлийн сан"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Хүснэгтийн буруу нэр"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Хүснэгт %s-ын нэр %s болж өөрчлөгдлөө"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Хүснэг хоосон үзэгдэж байна!"
@@ -7298,6 +7268,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Шинэ хэрэглэгч нэмэх"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Сэдэв %s-д олдсон зургийн зам буруу байна!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Боломжит харагдац байхгүй байна."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "авах"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Анхдагч сэдэв %s байхгүй байна!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Сэдэв %s олдсонгүй!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Сэдэв %s сэдвийн зам олдохгүй байна!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8382,8 +8384,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-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн "
"онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн "
@@ -10764,8 +10766,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 "Давхардсан мөрүүдийг алгасах"
diff --git a/po/ms.po b/po/ms.po
index dd8f0b339e..d092cb4398 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -44,10 +44,10 @@ msgstr "Cari"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -60,18 +60,18 @@ msgstr "Cari"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Pergi"
@@ -129,9 +129,9 @@ msgstr "Komen jadual"
msgid "Table comments"
msgstr "Komen jadual"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "Komen jadual"
msgid "Column"
msgstr "Nama Kolum"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "Nama Kolum"
msgid "Type"
msgstr "Jenis"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,12 +197,13 @@ msgstr "Pautan ke"
msgid "Comments"
msgstr "Komen"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -213,17 +214,17 @@ msgstr "Komen"
msgid "No"
msgstr "Tidak"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -336,8 +337,8 @@ msgstr ""
msgid "Switch to copied database"
msgstr "Tukar kepada pengkalan data yang di salin"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -512,8 +513,8 @@ msgstr "SQL- kueri pada pangkalan data %s:"
msgid "Submit Query"
msgstr "Hantar Kueri"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -614,7 +615,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Akses dinafikan"
@@ -742,8 +743,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -761,7 +762,7 @@ msgstr ""
msgid "Sum"
msgstr "Jumlah"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
@@ -810,8 +811,8 @@ msgstr "Paparan Cetak"
msgid "Empty"
msgstr "Kosong"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -889,9 +890,9 @@ msgstr ""
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -987,8 +988,8 @@ msgstr ""
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1161,11 +1162,11 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ubah"
@@ -1784,218 +1785,12 @@ msgstr "sedang digunakan"
msgid "Second"
msgstr "Rekod"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr ""
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Tiada indeks ditafrifkan!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeks"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unik"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinaliti"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Komen"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Kekunci utama telah digugurkan"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeks %s telah digugurkan"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "pangkalan data"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Ralat"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Tiada Jadual"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Jadual %s telah ditukarnama ke %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Selamat Datang ke %s"
@@ -2003,8 +1798,8 @@ msgstr "Selamat Datang ke %s"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
@@ -2015,57 +1810,57 @@ msgid ""
"the administrator of the MySQL server."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Logmasuk"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Dokumentasi phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
#, fuzzy
msgid "Server:"
msgstr "Pelayan"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Namapengguna:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Katalaluan:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Pilihan Pelayan"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Cecikut mestilah dihidupkan ketika ini."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Tidak boleh log-masuk ke server MySQL"
@@ -2104,6 +1899,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Ralat"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2156,6 +1959,11 @@ msgstr "Jadual-jadual"
msgid "Data"
msgstr "Data"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeks"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2185,13 +1993,13 @@ msgid "Check Privileges"
msgstr "Tiada Privilej"
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr ""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2436,85 +2244,8 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Tanda quote tidak disertakan"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Struktur"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Struktur dan data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Kemasukkan Selesai"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Penyelitan Lanjutan"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
+#: libraries/Config.class.php:1190
+msgid "Font size"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -3179,6 +2910,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "pangkalan data"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4695,6 +4432,87 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Tanda quote tidak disertakan"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Struktur"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Struktur dan data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Kemasukkan Selesai"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Penyelitan Lanjutan"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4760,6 +4578,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "Tambah Pengguna Baru"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4831,9 +4666,9 @@ msgstr "Panjang/Nilai*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4889,6 +4724,12 @@ msgstr "Jenis Kueri"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Komen"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4948,23 +4789,6 @@ msgid ""
"3.11[/a]"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5125,8 +4949,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:275
@@ -5853,8 +5677,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6159,6 +5983,42 @@ msgstr ""
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6176,41 +6036,6 @@ msgstr "Hasil SQL"
msgid "Generated by"
msgstr "Dijana oleh"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Tiada pangkalan data"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6272,6 +6097,41 @@ msgstr "Nama Kolum"
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Tiada pangkalan data"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6294,6 +6154,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Tiada indeks ditafrifkan!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unik"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinaliti"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Kekunci utama telah digugurkan"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeks %s telah digugurkan"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6306,6 +6200,27 @@ msgstr "Tiada"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6547,6 +6462,19 @@ msgstr ""
msgid "This format has no options"
msgstr ""
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Tiada Jadual"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "tidak OK"
@@ -6934,63 +6862,6 @@ msgstr ""
msgid "Target database"
msgstr "Cari di pangkalan data"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Laksana kueri SQL pada pangkalan data %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Laksana kueri SQL pada pangkalan data %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Nama Kolum"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "andabuku kueri-SQL ini"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Papar kueri ini di sini lagi "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Paparan sahaja"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Lokasi bagi fail teks"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "direktori muatnaik pelayan-web"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7054,6 +6925,63 @@ msgstr "Pengenalan TidakSah"
msgid "Unknown Punctuation String"
msgstr "TandaBaca tidak dikenali"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Laksana kueri SQL pada pangkalan data %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Laksana kueri SQL pada pangkalan data %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Nama Kolum"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "andabuku kueri-SQL ini"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Papar kueri ini di sini lagi "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Paparan sahaja"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Lokasi bagi fail teks"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "direktori muatnaik pelayan-web"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7063,6 +6991,48 @@ msgstr ""
"Pengesahan SQL tidak dapat disahkan. Sila semak sama ada anda telah memasang "
"sambungan php seperti yang tercatit di %sdocumentation%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Jadual %s telah ditukarnama ke %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7187,6 +7157,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Tambah Pengguna Baru"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8202,8 +8204,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 ""
#: server_privileges.php:1764
diff --git a/po/nb.po b/po/nb.po
index 1c39c3b088..8235a73baa 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-03-07 11:21+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: norwegian \n"
-"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -47,10 +47,10 @@ msgstr "Søk"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "Søk"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Utfør"
@@ -131,9 +131,9 @@ msgstr "Database kommentar: "
msgid "Table comments"
msgstr "Tabellkommentarer"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "Tabellkommentarer"
msgid "Column"
msgstr "Kolonne"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "Kolonne"
msgid "Type"
msgstr "Type"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,12 +197,13 @@ msgstr "Linker til"
msgid "Comments"
msgstr "Kommentarer"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -213,17 +214,17 @@ msgstr "Kommentarer"
msgid "No"
msgstr "Nei"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -331,8 +332,8 @@ msgstr "Legg til begrensninger"
msgid "Switch to copied database"
msgstr "Bytt til kopiert database"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -495,8 +496,8 @@ msgstr "SQL-spørring i database %s:"
msgid "Submit Query"
msgstr "Kjør spørring"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -604,7 +605,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Ingen tilgang"
@@ -725,8 +726,8 @@ msgstr "Overvåkning er ikke aktiv."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -744,7 +745,7 @@ msgstr "Replikering"
msgid "Sum"
msgstr "Sum"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s er standard lagringsmotor for denne MySQL tjeneren."
@@ -793,8 +794,8 @@ msgstr "Utskriftsvennlig forhåndsvisning"
msgid "Empty"
msgstr "Tøm"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -873,9 +874,9 @@ msgstr "Oppdatert"
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -970,8 +971,8 @@ msgstr "Dump har blitt lagret til fila %s."
#: import.php:58
#, 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."
msgstr ""
"Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen"
"%s for måter å omgå denne begrensningen."
@@ -1159,11 +1160,11 @@ msgstr "Fjern valgte brukere"
msgid "Close"
msgstr "Lukk"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Rediger"
@@ -1716,230 +1717,12 @@ msgstr "Minutt"
msgid "Second"
msgstr "Sekund"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Fontstørrelse"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Opplastingsfila er større enn upload_max_filesize direktivet definert i php."
-"ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Opplastingsfila er større enn MAX_FILE_SIZE direktivet som ble spesifisert i "
-"HTML-skjemaet."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Opplastingsfila ble bare delvis opplastet."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Mangler en midlertidig mappe."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Klarte ikke å skrive fila til harddisken."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Filopplasting stoppet av utvidelse."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Ukjent feil oppstod under filopplastingen."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Feil oppstod under forsøk på flytting av den opplastede fila, se FAQ 1.11"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Ingen indeks definert!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indekser"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unik"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Pakket"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinalitet"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Kommentar"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primærnøkkelen har blitt slettet"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeksen %s har blitt slettet"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Indeksene %1$s og %2$s ser ut til å være like og en av dem burde kunne "
-"fjernes."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Databaser"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Feil"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d rad berørt."
-msgstr[1] "%1$d rader berørt."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d rader slettet."
-msgstr[1] "%1$d rader slettet."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d rader innsatt."
-msgstr[1] "%1$d rader innsatt."
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not save configuration"
-msgid "Could not save recent table"
-msgstr "Kunne ikke lagre konfigurasjonen"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Tell tabeller"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Der finnes ingen konfigurerte tjenere"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Det er ikke noen detaljert statusinformasjon for denne lagringsmotoren."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s er tilgjengelig på denne MySQL theneren."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s har blitt dekativert for denne MySQL tjeneren."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Denne MySQL tjeneren har ikke støtte for %s lagringsmotoren."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Ugylding database"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Ugylding tabellnavn"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Feil oppstond med endring av tabellnavn fra %1$s til %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabellen %s har fått nytt navn %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Ingen gyldig bildesti for stilen %s ble funnet!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Ingen forhandsvisning tilgjengelig."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "velg"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Standard stil %s ble ikke funnet!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Stilen %s ble ikke funnet!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Stilsti ble ikke funnet for stilen %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Kan ikke koble til: ugyldige innstillinger."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Velkommen til %s"
@@ -1947,8 +1730,8 @@ msgstr "Velkommen til %s"
#: libraries/auth/config.auth.lib.php:106
#, 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."
@@ -1965,57 +1748,57 @@ msgstr ""
"passord (password) i config.inc.php og sjekke at de tilsvarer den "
"informasjonen du fikk fra MySQL-server administratoren."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Logg inn"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin-Dokumentasjon"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "Du kan skrive vertsnavn/IP adresse og port separert med mellomrom."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Tjener"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Brukernavn:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Passord:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Tjenervalg"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Cookies må være slått på forbi dette punkt."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"Innlogging uten passord er forbudt av konfigurasjonen (see AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Ingen aktivitet på %s sekunder eller mer, du må logge inn på nytt"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Kan ikke logge inn til MySQL tjeneren"
@@ -2056,6 +1839,14 @@ msgstr "PBMS feil"
msgid "PBMS connection failed:"
msgstr "PBMS tilkoblingen feilet:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Feil"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS get BLOB info feilet:"
@@ -2108,6 +1899,11 @@ msgstr "Tabeller"
msgid "Data"
msgstr "Data"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indekser"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2137,13 +1933,13 @@ msgstr "Kontroller privilegier"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Kunne ikke lagre konfigurasjonen"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2388,77 +2184,9 @@ msgstr "Det er ingen filer å laste opp"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Begge"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Åpne"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Lukket"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "struktur"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "data"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "struktur og data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Hurtig - vis minimalt med konfigureringer"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Bruker - vis alle konfigureringer"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Bruker - som ovenfor, men uten hurtigoppsett"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "Komplette inserts"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "Utvidete innlegg"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "begge ovenforstående"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "ingen av de overstående"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Fontstørrelse"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3113,6 +2841,12 @@ msgstr "Set import and eksport mapper og komprimeringsinnstillinger"
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Databaser"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Databasevisningsinnstillinger"
@@ -4751,6 +4485,78 @@ msgstr "Blankt phpMyAdmin kontrollbrukerpassord for bruk av pmadb"
msgid "Incorrect IP address: %s"
msgstr "Ugyldig IP addresse: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Begge"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Åpne"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Lukket"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "struktur"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "data"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "struktur og data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Hurtig - vis minimalt med konfigureringer"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Bruker - vis alle konfigureringer"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Bruker - som ovenfor, men uten hurtigoppsett"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "Komplette inserts"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "Utvidete innlegg"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "begge ovenforstående"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "ingen av de overstående"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4821,6 +4627,24 @@ msgstr ""
msgid "Add a new Event"
msgstr "Legg til en ny tjener"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Tilkoblingen for kontrollbrukeren som definert i din konfigurasjon feilet."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Tjeneren svarer ikke"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(eller den lokale MySQL tjenerens sokkel er ikke korrekt konfigurert)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Detaljer..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4895,9 +4719,9 @@ msgstr "Lengde/Sett*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4956,6 +4780,11 @@ msgstr "Sikkerhet"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Kommentar"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5020,24 +4849,6 @@ msgid ""
"3.11[/a]"
msgstr "Kan være unøyaktig. Se FAQ 3.11"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Tilkoblingen for kontrollbrukeren som definert i din konfigurasjon feilet."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Tjeneren svarer ikke"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(eller den lokale MySQL tjenerens sokkel er ikke korrekt konfigurert)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Detaljer..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5182,8 +4993,8 @@ msgstr ", @TABLE@ vil bli tabellnavnet"
#| "happen: %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 ""
"Denne verdien blir tolket slik som %1$sstrftime%2$s, så du kan bruke "
"tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. "
@@ -5976,8 +5787,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6281,6 +6092,47 @@ msgstr "Visning"
msgid "Export contents"
msgstr "Eksporter innhold"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Opplastingsfila er større enn upload_max_filesize direktivet definert i php."
+"ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Opplastingsfila er større enn MAX_FILE_SIZE direktivet som ble spesifisert i "
+"HTML-skjemaet."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Opplastingsfila ble bare delvis opplastet."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Mangler en midlertidig mappe."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Klarte ikke å skrive fila til harddisken."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Filopplasting stoppet av utvidelse."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Ukjent feil oppstod under filopplastingen."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Feil oppstod under forsøk på flytting av den opplastede fila, se FAQ 1.11"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6300,43 +6152,6 @@ msgstr "SQL-resultat"
msgid "Generated by"
msgstr "Generert av"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-"Følgende strukturer har enten blitt opprettet eller endret. Her kan du:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Vis en strukturs innhold ved å klikke på dens navn"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Endre noen av dens innstillinger ved å klikke på den tilhørende "
-"\"Innstillinger\" link"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Endre dens struktur ved å følge \"Struktur\" linken"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Gå til database"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "innstillinger"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Gå til tabell"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Gå til visning"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6396,6 +6211,43 @@ msgstr "Kolonnenavn"
msgid "This plugin does not support compressed imports!"
msgstr "Dette tillegget støtter ikke komprimerte importeringer!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+"Følgende strukturer har enten blitt opprettet eller endret. Her kan du:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Vis en strukturs innhold ved å klikke på dens navn"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Endre noen av dens innstillinger ved å klikke på den tilhørende "
+"\"Innstillinger\" link"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Endre dens struktur ved å følge \"Struktur\" linken"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Gå til database"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "innstillinger"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Gå til tabell"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Gå til visning"
+
#: libraries/import/ods.php:28
#, fuzzy
#| msgid "Import percentages as proper decimals (12.00% to .12)"
@@ -6428,6 +6280,42 @@ msgstr ""
"Den spesifiserte XML-fila var enten skadet eller ufulstendig. Korriger "
"problemet og prøv igjen."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Ingen indeks definert!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unik"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Pakket"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinalitet"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primærnøkkelen har blitt slettet"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeksen %s har blitt slettet"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Indeksene %1$s og %2$s ser ut til å være like og en av dem burde kunne "
+"fjernes."
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6438,6 +6326,27 @@ msgstr "Ingen"
msgid "Convert to Kana"
msgstr "Konverter til Kana"
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d rad berørt."
+msgstr[1] "%1$d rader berørt."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d rader slettet."
+msgstr[1] "%1$d rader slettet."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d rader innsatt."
+msgstr[1] "%1$d rader innsatt."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6682,6 +6591,24 @@ msgstr "Endre navigasjonsrammen"
msgid "This format has no options"
msgstr "Dette formatet har ingen valg"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Could not save recent table"
+msgstr "Kunne ikke lagre konfigurasjonen"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Tell tabeller"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Der finnes ingen konfigurerte tjenere"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "ikke OK"
@@ -7070,61 +6997,6 @@ msgstr "Differanse"
msgid "Target database"
msgstr "Måldatabase"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Kjør SQL spørring/spørringer på tjener %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Kjør SQL spørring/spørringer mot databasen %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Fjern"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Kolonner"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Lagre denne SQL-spørringen"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "La alle brukere ha adgang til dette bokmerket"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Erstatt eksisterende bokmerke med samme navn"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Ikke overskriv denne spørringen fra andre vinduer"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Skilletegn"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Vis denne spørring her igjen "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Bare se"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Plassering av filen"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "webtjener opplastingskatalog"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7189,6 +7061,61 @@ msgstr "Ugyldig identifikator"
msgid "Unknown Punctuation String"
msgstr "Ukjent tegnsettingsstreng"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Kjør SQL spørring/spørringer på tjener %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Kjør SQL spørring/spørringer mot databasen %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Fjern"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Kolonner"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Lagre denne SQL-spørringen"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "La alle brukere ha adgang til dette bokmerket"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Erstatt eksisterende bokmerke med samme navn"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Ikke overskriv denne spørringen fra andre vinduer"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Skilletegn"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Vis denne spørring her igjen "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Bare se"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Plassering av filen"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "webtjener opplastingskatalog"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7198,6 +7125,49 @@ msgstr ""
"SQL-kontrolleren kunne ikke startes. Vennligst sjekk at du har installert de "
"nødvendige php-tilleggene som beskrevet i %sdokumentasjonen%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Det er ikke noen detaljert statusinformasjon for denne lagringsmotoren."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s er tilgjengelig på denne MySQL theneren."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s har blitt dekativert for denne MySQL tjeneren."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Denne MySQL tjeneren har ikke støtte for %s lagringsmotoren."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Ugylding database"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Ugylding tabellnavn"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Feil oppstond med endring av tabellnavn fra %1$s til %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabellen %s har fått nytt navn %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabellen ser ut til å være tom!"
@@ -7239,8 +7209,8 @@ msgid ""
"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"
#: libraries/tbl_properties.inc.php:144
msgid "Transformation options"
@@ -7316,6 +7286,38 @@ msgstr "Partisjonsdefinisjon"
msgid "+ Add a new value"
msgstr "+ Legg til ny verdi"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Ingen gyldig bildesti for stilen %s ble funnet!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Ingen forhandsvisning tilgjengelig."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "velg"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Standard stil %s ble ikke funnet!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Stilen %s ble ikke funnet!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Stilsti ble ikke funnet for stilen %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8408,8 +8410,8 @@ msgstr "Slett databasene som har det samme navnet som brukerne."
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 "
@@ -10012,8 +10014,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&mode=edit&id="
-"%1$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?"
+"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=%1"
+"$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?"
"page=form&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."
@@ -10024,9 +10026,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
-#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
-#| "[/kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
+#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
+#| "kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
diff --git a/po/nl.po b/po/nl.po
index bfc362e3b5..7ea964afb5 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-06-04 15:19+0200\n"
"Last-Translator: Dieter Adriaenssens \n"
"Language-Team: dutch \n"
-"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -47,10 +47,10 @@ msgstr "Zoeken"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "Zoeken"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Start"
@@ -131,9 +131,9 @@ msgstr "Database opmerking: "
msgid "Table comments"
msgstr "Tabelopmerkingen"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "Tabelopmerkingen"
msgid "Column"
msgstr "Kolom"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "Kolom"
msgid "Type"
msgstr "Type"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,12 +197,13 @@ msgstr "Verwijst naar"
msgid "Comments"
msgstr "Opmerkingen"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -213,17 +214,17 @@ msgstr "Opmerkingen"
msgid "No"
msgstr "Nee"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -331,8 +332,8 @@ msgstr "Voeg beperkingen toe"
msgid "Switch to copied database"
msgstr "Overschakelen naar de gekopieerde database"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -496,8 +497,8 @@ msgstr "SQL-query op database %s:"
msgid "Submit Query"
msgstr "Query uitvoeren"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -605,7 +606,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Toegang geweigerd"
@@ -726,8 +727,8 @@ msgstr "Tracking is niet actief."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
@@ -746,7 +747,7 @@ msgstr "Replicatie"
msgid "Sum"
msgstr "Som"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s is de standaard storage engine op deze MySQL-server."
@@ -795,8 +796,8 @@ msgstr "Afdrukken"
msgid "Empty"
msgstr "Legen"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -869,9 +870,9 @@ msgstr "Bijgewerkt"
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -967,11 +968,11 @@ msgstr "Dump is bewaard als %s."
#: import.php:58
#, 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."
msgstr ""
-"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de "
-"%sdocumentatie%s voor mogelijkheden om dit te omzeilen."
+"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de %"
+"sdocumentatie%s voor mogelijkheden om dit te omzeilen."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1154,11 +1155,11 @@ msgstr "Geselecteerde gebruikers worden verwijderd"
msgid "Close"
msgstr "Sluiten"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Wijzig"
@@ -1705,226 +1706,12 @@ msgstr "Minuut"
msgid "Second"
msgstr "Seconde"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Lettertypegrootte"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Het geuploade bestand is groter dan de 'upload_max_filesize' optie uit uw "
-"php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Het geuploade bestand overschrijd de MAX_FILE_SIZE-optie die was opgegeven "
-"in het HTML formulier."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Het geuploade bestand was slechts gedeeltelijk ontvangen."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "De map voor tijdelijkebestanden ontbreekt."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Opslaan van het bestand op de hardeschijf is mislukt."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Upload afgebroken vanwege de extensie."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Onbekende fout bij het uploaden."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Fout bij het verplaatsen van het geuploade bestand, zie [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Geen index gedefinieerd!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indexen"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unieke waarde"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Gecomprimeerd"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinaliteit"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Opmerking"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "De primaire sleutel is vervallen"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Index %s is vervallen"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"De indexen %1$s en %2$s lijken hetzelfde, mogelijk kan een van beide worden "
-"verwijderd."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Databases"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Fout"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d rij bijgewerkt."
-msgstr[1] "%1$d rijen bijgewerkt."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d rij verwijderd."
-msgstr[1] "%1$d rijen verwijderd."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d rij toegevoegd."
-msgstr[1] "%1$d rijen toegevoegd."
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Recente tabel kon niet opgeslagen worden"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Recente tabellen"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Er zijn geen recente tabellen"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Er is geen gedetailleerde status informatie beschikbaar voor deze opslag "
-"engine."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s is beschikbaar op deze MySQL-server."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s is uitgeschakeld op deze MySQL-server."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Deze MySQL-server ondersteund de %s storage engine niet."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Ongeldige database"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Ongeldige tabel naam"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Fout bij het hernoemen van de tabel %1$s naar %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabel %s is hernoemd naar %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "UI tabel voorkeuren konden niet worden opgeslagen"
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Geen geldig afbeeldingen pad voor thema %s gevonden!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Geen preview beschikbaar."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "neem het"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Standaard thema %s niet gevonden!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Thema %s niet gevonden!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Thema pad niet gevonden voor thema %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Kan niet verbinden: ongeldige instellingen."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Welkom op %s"
@@ -1932,8 +1719,8 @@ msgstr "Welkom op %s"
#: libraries/auth/config.auth.lib.php:106
#, 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."
@@ -1950,45 +1737,45 @@ msgstr ""
"wachtwoord in config.inc.php en zorg er voor dat deze overeenkomen met de "
"informatie die u van de Beheerder van de MySQL-server kreeg."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Inloggen"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin Documentatie"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
"U kunt een machinenaam/IP adres en poortnummer gescheiden door een spatie "
"opgeven."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Server:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Gebruikersnaam:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Wachtwoord:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Serverkeuze"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Cookies moeten aan staan voorbij dit punt."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -1996,14 +1783,14 @@ msgstr ""
"Inloggen zonder wachtwoord is niet toegestaan vanuit de instellingen (zie "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Geen activiteit voor %s seconden of meer, log a.u.b. opnieuw in"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Kan niet inloggen op de MySQL-server"
@@ -2044,6 +1831,14 @@ msgstr "PBMS fout"
msgid "PBMS connection failed:"
msgstr "PBMS connectie mislukt:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Fout"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS BLOB info ophalen mislukt:"
@@ -2096,6 +1891,11 @@ msgstr "Tabellen"
msgid "Data"
msgstr "Data"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indexen"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2125,13 +1925,13 @@ msgstr "Controleer privileges"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Opslaan van het configuratiebestand is niet mogelijk"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
# 'kon niet vanuit "%1$s" geladen worden' is juister.
@@ -2379,77 +2179,9 @@ msgstr "Er zijn geen bestanden om te uploaden"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Beide"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Nergens"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Links"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Rechts"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Open"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Gesloten"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "structuur"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "gegevens"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "Structuur en gegevens"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Snel - toon enkel de belangrijkste opties"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Uitgebreid - toon alle mogelijke opties"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Uitgebreid - als bovenstaande maar zonder snel/uitgebreid keuze"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "volledige invoegingen"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "uitgebreide invoegingen"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "beide bovenstaande opties"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "geen van bovenstaande opties"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Lettertypegrootte"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3110,6 +2842,12 @@ msgstr "Aanpassen importeer- en exporteer-directories en compressie-opties"
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Databases"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Weergave opties voor databases"
@@ -4755,6 +4493,78 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Foutief IP adres: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Beide"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Nergens"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Links"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Rechts"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Open"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Gesloten"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "structuur"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "gegevens"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "Structuur en gegevens"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Snel - toon enkel de belangrijkste opties"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Uitgebreid - toon alle mogelijke opties"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Uitgebreid - als bovenstaande maar zonder snel/uitgebreid keuze"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "volledige invoegingen"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "uitgebreide invoegingen"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "beide bovenstaande opties"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "geen van bovenstaande opties"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4825,6 +4635,25 @@ msgstr ""
msgid "Add a new Event"
msgstr "Een server toevoegen"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Connectie voor de controle gebruiker zoals in de configuratie is opgegeven "
+"is mislukt."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "De server reageert niet"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(of de MySQL-server heeft het socket niet juist ingesteld)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Details..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4899,9 +4728,9 @@ msgstr "Lengte/Waardes*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4960,6 +4789,11 @@ msgstr "Beveiliging"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Opmerking"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5026,25 +4860,6 @@ msgstr ""
"Bij benadering. Zie [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/"
"a]"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Connectie voor de controle gebruiker zoals in de configuratie is opgegeven "
-"is mislukt."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "De server reageert niet"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(of de MySQL-server heeft het socket niet juist ingesteld)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Details..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5186,13 +5001,13 @@ msgstr ", @TABLE@ wordt vervangen door de tabel naam"
#, 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:275
msgid "use this for future exports"
@@ -5974,11 +5789,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@@ -6281,6 +6096,48 @@ msgstr "Views"
msgid "Export contents"
msgstr "Exporteer inhoud"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Het geuploade bestand is groter dan de 'upload_max_filesize' optie uit uw "
+"php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Het geuploade bestand overschrijd de MAX_FILE_SIZE-optie die was opgegeven "
+"in het HTML formulier."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Het geuploade bestand was slechts gedeeltelijk ontvangen."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "De map voor tijdelijkebestanden ontbreekt."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Opslaan van het bestand op de hardeschijf is mislukt."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Upload afgebroken vanwege de extensie."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Onbekende fout bij het uploaden."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Fout bij het verplaatsen van het geuploade bestand, zie [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6300,40 +6157,6 @@ msgstr "SQL-resultaat"
msgid "Generated by"
msgstr "Gegenereerd door"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "De volgende structuren zijn aangemaakt of aangepast. Hier kunt u:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "De inhoud van een structuur bekijken door er op te klikken"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "Een instelling veranderen door op \"Opties\" te klikken"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Klik op de \"Structuur\"-koppeling om de structuur aan te passen"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Ga naar database"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "instellingen"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Ga naar tabel"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Ga naar view"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6401,6 +6224,40 @@ msgstr "Kolom namen"
msgid "This plugin does not support compressed imports!"
msgstr "Deze plugin heeft geen ondersteuning voor gecomprimeerde imports!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "De volgende structuren zijn aangemaakt of aangepast. Hier kunt u:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "De inhoud van een structuur bekijken door er op te klikken"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "Een instelling veranderen door op \"Opties\" te klikken"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Klik op de \"Structuur\"-koppeling om de structuur aan te passen"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Ga naar database"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "instellingen"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Ga naar tabel"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Ga naar view"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr "Percentages als decimalen importeren (12.00% naar ,12)"
@@ -6425,6 +6282,42 @@ msgstr ""
"Het XML-bestand was beschadigd of onvolledig. Repareer het bestand en "
"probeer opnieuw."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Geen index gedefinieerd!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unieke waarde"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Gecomprimeerd"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinaliteit"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "De primaire sleutel is vervallen"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Index %s is vervallen"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"De indexen %1$s en %2$s lijken hetzelfde, mogelijk kan een van beide worden "
+"verwijderd."
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6436,6 +6329,27 @@ msgstr "Geen"
msgid "Convert to Kana"
msgstr "Zet om naar Kana"
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d rij bijgewerkt."
+msgstr[1] "%1$d rijen bijgewerkt."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d rij verwijderd."
+msgstr[1] "%1$d rijen verwijderd."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d rij toegevoegd."
+msgstr[1] "%1$d rijen toegevoegd."
+
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "Van"
@@ -6675,6 +6589,18 @@ msgstr "Navigatievenster herladen"
msgid "This format has no options"
msgstr "Dit format heeft geen opties"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Recente tabel kon niet opgeslagen worden"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Recente tabellen"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Er zijn geen recente tabellen"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Niet Goed"
@@ -7060,61 +6986,6 @@ msgstr "Verschil"
msgid "Target database"
msgstr "Doel database"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Voer SQL query/queries uit op de server %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Draai SQL query/queries op database %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Clear"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Kolommen"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Sla deze SQL-query op"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Geef elke gebruiker toegang tot deze bookmark"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Bookmark met dezelfde naam overschrijven"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Overschrijf deze query niet vanuit een ander scherm"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Scheidingsteken"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Laat deze query hier zien "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Alleen bekijken"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Locatie van het tekstbestand"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web-server upload directory"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7178,6 +7049,61 @@ msgstr "Ongeldig herkenningsteken"
msgid "Unknown Punctuation String"
msgstr "Onbekende Punctuatie String"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Voer SQL query/queries uit op de server %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Draai SQL query/queries op database %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Clear"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Kolommen"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Sla deze SQL-query op"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Geef elke gebruiker toegang tot deze bookmark"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Bookmark met dezelfde naam overschrijven"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Overschrijf deze query niet vanuit een ander scherm"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Scheidingsteken"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Laat deze query hier zien "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Alleen bekijken"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Locatie van het tekstbestand"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web-server upload directory"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7187,6 +7113,50 @@ msgstr ""
"De SQL-validatie kon niet worden geïnitialiseerd. Controleer of u de nodige "
"PHP-extensies heeft geïnstalleerd, zoals beschreven in de %sdocumentatie%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Er is geen gedetailleerde status informatie beschikbaar voor deze opslag "
+"engine."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s is beschikbaar op deze MySQL-server."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s is uitgeschakeld op deze MySQL-server."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Deze MySQL-server ondersteund de %s storage engine niet."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Ongeldige database"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Ongeldige tabel naam"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Fout bij het hernoemen van de tabel %1$s naar %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabel %s is hernoemd naar %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "UI tabel voorkeuren konden niet worden opgeslagen"
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabel lijkt leeg!"
@@ -7306,6 +7276,38 @@ msgstr "PARTITION definitie"
msgid "+ Add a new value"
msgstr "+ Een nieuwe waarde toevoegen"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Geen geldig afbeeldingen pad voor thema %s gevonden!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Geen preview beschikbaar."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "neem het"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Standaard thema %s niet gevonden!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Thema %s niet gevonden!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Thema pad niet gevonden voor thema %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8370,8 +8372,8 @@ msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers."
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 "
"privileges tabel. De content van deze tabel kan verschillen met de rechten "
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index 7839781442..cd2bf2dcec 100644
--- a/po/phpmyadmin.pot
+++ b/po/phpmyadmin.pot
@@ -8,11 +8,10 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -49,10 +48,10 @@ msgstr ""
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +64,18 @@ msgstr ""
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr ""
@@ -131,9 +130,9 @@ msgstr ""
msgid "Table comments"
msgstr ""
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +141,12 @@ msgstr ""
msgid "Column"
msgstr ""
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +156,9 @@ msgstr ""
msgid "Type"
msgstr ""
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,12 +196,13 @@ msgstr ""
msgid "Comments"
msgstr ""
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -213,17 +213,17 @@ msgstr ""
msgid "No"
msgstr ""
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -331,8 +331,8 @@ msgstr ""
msgid "Switch to copied database"
msgstr ""
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -494,8 +494,8 @@ msgstr ""
msgid "Submit Query"
msgstr ""
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -591,7 +591,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr ""
@@ -708,8 +708,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -727,7 +727,7 @@ msgstr ""
msgid "Sum"
msgstr ""
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, possible-php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
@@ -776,8 +776,8 @@ msgstr ""
msgid "Empty"
msgstr ""
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -850,9 +850,9 @@ msgstr ""
msgid "Status"
msgstr ""
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -944,8 +944,8 @@ msgstr ""
#: import.php:58
#, possible-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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1111,11 +1111,11 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr ""
@@ -1642,216 +1642,12 @@ msgstr ""
msgid "Second"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr ""
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr ""
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr ""
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr ""
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr ""
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr ""
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:478
-#, possible-php-format
-msgid "Index %s has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:582
-#, possible-php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr ""
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr ""
-
-#: libraries/Message.class.php:260
-#, possible-php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, possible-php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, possible-php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr ""
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:354
-#, possible-php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:357
-#, possible-php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:361
-#, possible-php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, possible-php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, possible-php-format
-msgid "Table %s has been renamed to %s"
-msgstr ""
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, possible-php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, possible-php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, possible-php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, possible-php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, possible-php-format
msgid "Welcome to %s"
msgstr ""
@@ -1859,8 +1655,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
@@ -1871,56 +1667,56 @@ msgid ""
"the administrator of the MySQL server."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, possible-php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr ""
@@ -1959,6 +1755,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr ""
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2011,6 +1815,11 @@ msgstr ""
msgid "Data"
msgstr ""
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr ""
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2038,13 +1847,13 @@ msgid "Check Privileges"
msgstr ""
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr ""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2287,76 +2096,8 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr ""
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr ""
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr ""
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr ""
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr ""
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
+#: libraries/Config.class.php:1190
+msgid "Font size"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2987,6 +2728,12 @@ msgstr ""
msgid "LaTeX"
msgstr ""
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr ""
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4454,6 +4201,78 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr ""
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr ""
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr ""
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr ""
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr ""
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4517,6 +4336,23 @@ msgstr ""
msgid "Add a new Event"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4584,9 +4420,9 @@ msgstr ""
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4633,6 +4469,11 @@ msgstr ""
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr ""
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4689,23 +4530,6 @@ msgid ""
"3.11[/a]"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4844,8 +4668,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:275
@@ -5535,8 +5359,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -5817,6 +5641,42 @@ msgstr ""
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5834,40 +5694,6 @@ msgstr ""
msgid "Generated by"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -5927,6 +5753,40 @@ msgstr ""
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -5949,6 +5809,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr ""
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr ""
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr ""
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:478
+#, possible-php-format
+msgid "Index %s has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:582
+#, possible-php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -5959,6 +5853,27 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, possible-php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, possible-php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, possible-php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr ""
@@ -6197,6 +6112,18 @@ msgstr ""
msgid "This format has no options"
msgstr ""
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr ""
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr ""
@@ -6566,6 +6493,57 @@ msgstr ""
msgid "Target database"
msgstr ""
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sql_query_form.lib.php:223
#, possible-php-format
msgid "Run SQL query/queries on server %s"
@@ -6621,57 +6599,6 @@ msgstr ""
msgid "web server upload directory"
msgstr ""
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sqlvalidator.lib.php:67
#, possible-php-format
msgid ""
@@ -6679,6 +6606,48 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, possible-php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, possible-php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, possible-php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, possible-php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, possible-php-format
+msgid "Table %s has been renamed to %s"
+msgstr ""
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -6783,6 +6752,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr ""
+#: libraries/Theme.class.php:160
+#, possible-php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, possible-php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, possible-php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, possible-php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7731,8 +7732,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 ""
#: server_privileges.php:1764
diff --git a/po/pl.po b/po/pl.po
index f93d1ad6bd..23f0255c37 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-02-24 16:21+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: polish \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: Pootle 2.0.5\n"
@@ -49,10 +49,10 @@ msgstr "Szukaj"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Szukaj"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Wykonaj"
@@ -133,9 +133,9 @@ msgstr "Komentarz bazy danych: "
msgid "Table comments"
msgstr "Komentarze tabeli"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "Komentarze tabeli"
msgid "Column"
msgstr "Kolumna"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "Kolumna"
msgid "Type"
msgstr "Typ"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,12 +199,13 @@ msgstr "Łącze"
msgid "Comments"
msgstr "Komentarze"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +216,17 @@ msgstr "Komentarze"
msgid "No"
msgstr "Nie"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -333,8 +334,8 @@ msgstr "Dodaj ograniczenia"
msgid "Switch to copied database"
msgstr "Przełącz do przekopiowanej bazy danych"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -504,8 +505,8 @@ msgstr "Zapytanie SQL dla bazy danych %s:"
msgid "Submit Query"
msgstr "Wykonaj zapytania"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -614,7 +615,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Brak dostępu"
@@ -737,11 +738,11 @@ msgstr "Monitorowanie nie jest aktywne."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
-"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w "
-"%sdocumentation%s."
+"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w %"
+"sdocumentation%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -758,7 +759,7 @@ msgstr "Replikacja"
msgid "Sum"
msgstr "Suma"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s to domyślny mechanizm składowania tego serwera MySQL."
@@ -807,8 +808,8 @@ msgstr "Widok do druku"
msgid "Empty"
msgstr "Wyczyść"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -883,9 +884,9 @@ msgstr "Zaktualizowane"
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -979,8 +980,8 @@ msgstr "Zrzut został zapisany do pliku %s."
#: import.php:58
#, 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."
msgstr ""
"Prawdopodobnie próbowano wrzucić duży plik. Aby poznać sposoby obejścia tego "
"limitu, proszę zapoznać się z %sdokumenacją%s."
@@ -1170,11 +1171,11 @@ msgstr "Usuń zaznaczonych użytkowników"
msgid "Close"
msgstr "Zamknij"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Edytuj"
@@ -1753,234 +1754,12 @@ msgstr "Minuta"
msgid "Second"
msgstr "Sekunda"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Rozmiar pisma"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Rozmiar wrzucanego pliku jest większy niż wartość dyrektywy "
-"upload_max_filesize w php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Rozmiar wrzucanego pliku jest więcszy niż wartość dyrektywy MAX_FILE_SIZE "
-"określonej w formularzu HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Plik został przesłany jedynie częściowo."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Nie znaleziono katalogu tymczasowego."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Nie udało się zapisać pliku na dysk."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Przesłanie pliku zostało zatrzymane przez rozszerzenie."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Nieznany błąd przesyłania pliku."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Błąd podczas przenoszenia przesłanego pliku. Zobacz [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Brak zdefiniowanego indeksu!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeksy"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Jednoznaczny"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Spakowany"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Moc"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Komentarz"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Klucz podstawowy został usunięty"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Klucz %s został usunięty"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Indeksy %1$s i %2$s wyglądają na identyczne i jeden z nich mógłby zostać "
-"usunięty."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Bazy danych"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Błąd"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Zmodyfikowanych rekordów: %1$d."
-msgstr[1] "Zmodyfikowanych rekordów: %1$d."
-msgstr[2] "Zmodyfikowanych rekordów: %1$d."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Usuniętych rekordów: %1$d."
-msgstr[1] "Usuniętych rekordów: %1$d."
-msgstr[2] "Usuniętych rekordów: %1$d."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Wstawionych rekordów: %1$d."
-msgstr[1] "Wstawionych rekordów: %1$d."
-msgstr[2] "Wstawionych rekordów: %1$d."
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Cannot load or save configuration"
-msgid "Could not save recent table"
-msgstr "Nie udało się załadować lub zapisać konfiguracji"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Zliczaj tabele"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Brak skonfigurowanych serwerów"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Brak szczegółowych informacji o tym mechanizmie składowania"
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s jest dostępny na tym serwerze MySQL."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "Mechanizm %s został wyłączony w tym serwerze MySQL."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Ten serwer MySQL nie obsługuje mechanizmu składowania %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Niewłaściwa baza danych"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Niewłaściwa nazwa tabeli"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Błąd podczas zmiany nazwy tabeli z %1$s na %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabela %s ma nazwę zmienioną na %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-"Nie znaleziono prawidłowej ścieżki do obrazka dla motywu graficznego %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Podgląd niedostępny."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "użyj"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Nie znaleziono domyślnego motywu graficznego %s!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Nie znaleziono motywu graficznego %s!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Nie znaleziono ścieżki do motywu %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Nie udało się nawiązać połączenia: błędne ustawienia."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Witamy w %s"
@@ -1988,8 +1767,8 @@ msgstr "Witamy w %s"
#: libraries/auth/config.auth.lib.php:106
#, 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. Do jego "
"stworzenia można użyć %1$sskryptu instalacyjnego%2$s."
@@ -2006,57 +1785,57 @@ msgstr ""
"pliku config.inc.php i upewnić się, że odpowiadają one informacjom danym "
"przez administratora serwera MySQL."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Login"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Dokumentacja phpMyAdmina"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "Można podać nawę hosta/adres IP i port oddzielone spacją."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Serwer"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Użytkownik:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Hasło:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Wybór serwera"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Odtąd musi być włączona obsługa ciasteczek."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "Konfiguracja zabrania logowania bez hasła (zobacz AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
"Brak aktywności przez co najmniej %s sekund, proszę zalogować się jeszcze raz"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Nie udało się zalogować na serwer MySQL"
@@ -2097,6 +1876,14 @@ msgstr "Błąd PBMS"
msgid "PBMS connection failed:"
msgstr "Błąd połączenia z PBMS"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Błąd"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2149,6 +1936,11 @@ msgstr "Tabele"
msgid "Data"
msgstr "Dane"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeksy"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2180,13 +1972,13 @@ msgstr "Sprawdź uprawnienia"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Cannot load or save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Nie udało się załadować lub zapisać konfiguracji"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2439,85 +2231,9 @@ msgstr "Nie podałeś plików do wgrania na serwer"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Oba"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Otwórz"
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Close"
-msgid "Closed"
-msgstr "Zamknij"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "struktura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "dane"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Struktura i dane"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Pokaż tylko podstawowe opcje do konfiguracji"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Pełna - wyświetl wszystkie opcje konfiguracyjne"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Pełne dodania"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Rozszerzone dodania"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "oba powyższe"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "żadne z powyższych"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Rozmiar pisma"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3191,6 +2907,12 @@ msgstr "Ustaw katalogi importu i eksportu oraz opcje kompresji"
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Bazy danych"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Opcje wyświetlania baz danych"
@@ -4863,6 +4585,86 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Nieprawidłowy adres IP: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Oba"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Otwórz"
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Close"
+msgid "Closed"
+msgstr "Zamknij"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "struktura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "dane"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Struktura i dane"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Pokaż tylko podstawowe opcje do konfiguracji"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Pełna - wyświetl wszystkie opcje konfiguracyjne"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Pełne dodania"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Rozszerzone dodania"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "oba powyższe"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "żadne z powyższych"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4933,6 +4735,26 @@ msgstr ""
msgid "Add a new Event"
msgstr "Dodaj nowy serwer"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Połączenie dla użytkownika kontrolnego zdefiniowanego w pliku "
+"konfiguracyjnym nie powiodło się."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Serwer nie odpowiada"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+"(lub gniazdo lokalnego serwera MySQL nie jest skonfigurowane poprawnie)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Szczegóły…"
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -5007,9 +4829,9 @@ msgstr "Długość/Wartości*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -5068,6 +4890,11 @@ msgstr "Bezpieczeństwo"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Komentarz"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5134,26 +4961,6 @@ msgstr ""
"Może być w przybliżeniu. Zobacz [a@./Documentation."
"html#faq3_11@Documentation]FAQ 3.11[/a]"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Połączenie dla użytkownika kontrolnego zdefiniowanego w pliku "
-"konfiguracyjnym nie powiodło się."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Serwer nie odpowiada"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-"(lub gniazdo lokalnego serwera MySQL nie jest skonfigurowane poprawnie)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Szczegóły…"
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5323,8 +5130,8 @@ msgstr ", @TABLE@ zostanie zastąpione nazwą wybranej tabeli"
#| "happen: %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 ""
"Interpretacja tej wartości należy do funkcji %1$sstrftime%2$s i można użyć "
"jej napisów formatujących. Dodatkowo zostaną zastosowane następujące "
@@ -6139,8 +5946,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6459,6 +6266,48 @@ msgstr "Perspektywa"
msgid "Export contents"
msgstr "Eksportuj zawartość"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Rozmiar wrzucanego pliku jest większy niż wartość dyrektywy "
+"upload_max_filesize w php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Rozmiar wrzucanego pliku jest więcszy niż wartość dyrektywy MAX_FILE_SIZE "
+"określonej w formularzu HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Plik został przesłany jedynie częściowo."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Nie znaleziono katalogu tymczasowego."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Nie udało się zapisać pliku na dysk."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Przesłanie pliku zostało zatrzymane przez rozszerzenie."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Nieznany błąd przesyłania pliku."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Błąd podczas przenoszenia przesłanego pliku. Zobacz [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6478,41 +6327,6 @@ msgstr "Rezultat SQL"
msgid "Generated by"
msgstr "Wygenerowany przez"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-"Następujące struktury zostały wcześniej utworzone lub zaktualizowane. Możesz:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Zobacz zawartość struktury klikając jej nazwę"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "Możesz zmienić wszystkie ustawienia klikając odnośnik \"Opcje\""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Edytuj strukturę po kliknięciu odnośnika \"Struktura\""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Przejdź do bazy danych"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "ustawienia"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Przejdź do tabeli"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Przejdź do widoku"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6577,6 +6391,41 @@ msgstr "Nazwy kolumn"
msgid "This plugin does not support compressed imports!"
msgstr "Ten moduł nie obsługuje skompresowanych importów!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+"Następujące struktury zostały wcześniej utworzone lub zaktualizowane. Możesz:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Zobacz zawartość struktury klikając jej nazwę"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "Możesz zmienić wszystkie ustawienia klikając odnośnik \"Opcje\""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Edytuj strukturę po kliknięciu odnośnika \"Struktura\""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Przejdź do bazy danych"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "ustawienia"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Przejdź do tabeli"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Przejdź do widoku"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6604,6 +6453,42 @@ msgstr ""
"Plik XML ma nieprawidłową strukturę lub jest niekompletny. Proszę skorygować "
"problem i spróbować ponownie."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Brak zdefiniowanego indeksu!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Jednoznaczny"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Spakowany"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Moc"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Klucz podstawowy został usunięty"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Klucz %s został usunięty"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Indeksy %1$s i %2$s wyglądają na identyczne i jeden z nich mógłby zostać "
+"usunięty."
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6616,6 +6501,30 @@ msgstr "Brak"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Zmodyfikowanych rekordów: %1$d."
+msgstr[1] "Zmodyfikowanych rekordów: %1$d."
+msgstr[2] "Zmodyfikowanych rekordów: %1$d."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Usuniętych rekordów: %1$d."
+msgstr[1] "Usuniętych rekordów: %1$d."
+msgstr[2] "Usuniętych rekordów: %1$d."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Wstawionych rekordów: %1$d."
+msgstr[1] "Wstawionych rekordów: %1$d."
+msgstr[2] "Wstawionych rekordów: %1$d."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6859,6 +6768,24 @@ msgstr "Indywidualizacja ramki nawigacyjnej"
msgid "This format has no options"
msgstr "Ten format nie ma żadnych opcji"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Could not save recent table"
+msgstr "Nie udało się załadować lub zapisać konfiguracji"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Zliczaj tabele"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Brak skonfigurowanych serwerów"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "błąd"
@@ -7260,63 +7187,6 @@ msgstr "Różnica"
msgid "Target database"
msgstr "Docelowa baza danych"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Uruchom zapytanie/zapytania SQL na serwerze %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Wykonanie zapytania/zapytań SQL do bazy danych %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Wyczyść"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Nazwy kolumn"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Pamiętaj zapytanie SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Pozwól na dostęp wszystkim użytkownikom"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Zamień istniejące zapamiętane zapytanie o tej samej nazwie"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Nie nadpisuj tego zapytania spoza okna"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Separator"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Wywołaj ponownie zapytanie "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Tylko pokaż"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Lokalizacja pliku tekstowego"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "katalog serwera WWW do przesyłania plików"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7381,6 +7251,63 @@ msgstr "Nieprawidłowy identyfikator"
msgid "Unknown Punctuation String"
msgstr "Nieznany znak przestankowy"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Uruchom zapytanie/zapytania SQL na serwerze %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Wykonanie zapytania/zapytań SQL do bazy danych %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Wyczyść"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Nazwy kolumn"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Pamiętaj zapytanie SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Pozwól na dostęp wszystkim użytkownikom"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Zamień istniejące zapamiętane zapytanie o tej samej nazwie"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Nie nadpisuj tego zapytania spoza okna"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Separator"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Wywołaj ponownie zapytanie "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Tylko pokaż"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Lokalizacja pliku tekstowego"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "katalog serwera WWW do przesyłania plików"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7388,8 +7315,50 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Analizator składni SQL nie mógł zostać zainicjowany. Sprawdź, czy "
-"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w "
-"%sdokumentacji%s."
+"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w %"
+"sdokumentacji%s."
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Brak szczegółowych informacji o tym mechanizmie składowania"
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s jest dostępny na tym serwerze MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "Mechanizm %s został wyłączony w tym serwerze MySQL."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Ten serwer MySQL nie obsługuje mechanizmu składowania %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Niewłaściwa baza danych"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Niewłaściwa nazwa tabeli"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Błąd podczas zmiany nazwy tabeli z %1$s na %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabela %s ma nazwę zmienioną na %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
@@ -7439,8 +7408,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij "
-"%sopisy transformacji%s"
+"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij %"
+"sopisy transformacji%s"
#: libraries/tbl_properties.inc.php:144
msgid "Transformation options"
@@ -7521,6 +7490,39 @@ msgstr "Definicja partycji"
msgid "+ Add a new value"
msgstr "Dodaj nowy serwer"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+"Nie znaleziono prawidłowej ścieżki do obrazka dla motywu graficznego %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Podgląd niedostępny."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "użyj"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Nie znaleziono domyślnego motywu graficznego %s!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Nie znaleziono motywu graficznego %s!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Nie znaleziono ścieżki do motywu %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -7919,8 +7921,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."
#: navigation.php:213 server_databases.php:281 server_synchronize.php:1202
msgid "No databases"
@@ -8667,8 +8669,8 @@ msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy."
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, "
@@ -10283,8 +10285,8 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
"Jeżeli wydaje się to konieczne, można użyć dodatkowych ustawień "
-"bezpieczeństwa — [a@?page=servers&mode=edit&id="
-"%1$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?"
+"bezpieczeństwa — [a@?page=servers&mode=edit&id=%1"
+"$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?"
"page=form&formset=features#tab_Security]listy zaufanych serwerów proxy[/"
"a]. Jednakże ochrona oparta na adresy IP może nie być wiarygodna, jeżeli "
"używany IP należy do ISP, do którego podłączonych jest tysiące użytkowników."
@@ -10295,9 +10297,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
-#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
-#| "[/kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
+#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
+#| "kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
diff --git a/po/pt.po b/po/pt.po
index 9647aa173c..a03d3bf449 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-03-26 03:23+0200\n"
"Last-Translator: \n"
"Language-Team: portuguese \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: Pootle 2.0.5\n"
@@ -49,10 +49,10 @@ msgstr "Pesquisar"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Pesquisar"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Executa"
@@ -133,9 +133,9 @@ msgstr "Comentário da Base de Dados: "
msgid "Table comments"
msgstr "Comentários da tabela"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "Comentários da tabela"
msgid "Column"
msgstr "Coluna"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "Coluna"
msgid "Type"
msgstr "Tipo"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,12 +199,13 @@ msgstr "Links para"
msgid "Comments"
msgstr "Comentários"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +216,17 @@ msgstr "Comentários"
msgid "No"
msgstr "Não"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -333,8 +334,8 @@ msgstr "Adicionar restrições (constraints)"
msgid "Switch to copied database"
msgstr "Mudar para a Base de Dados copiada"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -498,8 +499,8 @@ msgstr "Comando SQL na base de dados %s:"
msgid "Submit Query"
msgstr "Executar Comando SQL"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -600,7 +601,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Acesso Negado"
@@ -721,11 +722,11 @@ msgstr "Detecção de Alterações está desactivada."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -743,7 +744,7 @@ msgstr "Replicação"
msgid "Sum"
msgstr "Soma"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s é o storage engine por defeito neste MySQL server."
@@ -792,8 +793,8 @@ msgstr "Vista de impressão"
msgid "Empty"
msgstr "Limpa"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -871,9 +872,9 @@ msgstr "Actualizado"
msgid "Status"
msgstr "Estado"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -967,8 +968,8 @@ msgstr "O Dump foi gravado para o ficheiro %s."
#: import.php:58
#, 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."
msgstr ""
"Provavelmente tentou efectuar o importar um ficheiro demasiado grande. Por "
"favor reveja a %sdocumentação%s para encontrar formas de contornar este "
@@ -1160,11 +1161,11 @@ msgstr "Removendo os utilizadores seleccionados"
msgid "Close"
msgstr "Fechar"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Edita"
@@ -1768,220 +1769,12 @@ msgstr "em uso"
msgid "Second"
msgstr "por segundo"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr ""
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Nenhum indíce definido!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Índices"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Único"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Quantidade"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Comentários"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "A chave primária foi eliminada"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "O Índice %s foi eliminado"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Base de Dados"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Erro"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Sem tablelas"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "Tracked tables"
-msgid "There are no recent tables"
-msgstr "Tabelas em tracking"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabela %s renomeada para %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Bemvindo ao %s"
@@ -1989,11 +1782,11 @@ msgstr "Bemvindo ao %s"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
msgid ""
@@ -2007,56 +1800,56 @@ msgstr ""
"inc.php e assegure-se que correspondem à informação fornecida pelo "
"administrador do MySQL."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Entrada"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Documentação do phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Servidor"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Utilizador :"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Palavra-passe :"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Escolha do Servidor"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "O mecanismo de \"Cookies\" tem de estar ligado a partir deste ponto."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Não é possível fazer login no servidor MySQL"
@@ -2095,6 +1888,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Erro"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2147,6 +1948,11 @@ msgstr "Tabelas"
msgid "Data"
msgstr "Dados"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Índices"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2176,13 +1982,13 @@ msgid "Check Privileges"
msgstr "Verificar Privilégios"
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr ""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2428,85 +2234,8 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Aspa não fechada"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Estrutura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Estrutura e dados"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Instrucções de inserção completas"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Instrucções de inserção múltiplas"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
+#: libraries/Config.class.php:1190
+msgid "Font size"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -3180,6 +2909,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Base de Dados"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4715,6 +4450,87 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Aspa não fechada"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Estrutura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Estrutura e dados"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Instrucções de inserção completas"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Instrucções de inserção múltiplas"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4783,6 +4599,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "Acrescenta um utilizador"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4855,9 +4688,9 @@ msgstr "Tamanho/Valores*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4915,6 +4748,12 @@ msgstr "Tipo de Query"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Comentários"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4976,23 +4815,6 @@ msgid ""
"3.11[/a]"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5155,8 +4977,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:275
@@ -5890,8 +5712,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6203,6 +6025,42 @@ msgstr ""
msgid "Export contents"
msgstr "Tipo de Exportação"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6220,42 +6078,6 @@ msgstr "Resultado SQL"
msgid "Generated by"
msgstr "Gerado por"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Sem bases de dados"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "Sem bases de dados"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6317,6 +6139,42 @@ msgstr "Nome dos Campos"
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Sem bases de dados"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "Sem bases de dados"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6339,6 +6197,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Nenhum indíce definido!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Único"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Quantidade"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "A chave primária foi eliminada"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "O Índice %s foi eliminado"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6351,6 +6243,27 @@ msgstr "Nenhum"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6597,6 +6510,21 @@ msgstr ""
msgid "This format has no options"
msgstr "Este formato não tem opções"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Sem tablelas"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "Tracked tables"
+msgid "There are no recent tables"
+msgstr "Tabelas em tracking"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "não está OK"
@@ -6987,63 +6915,6 @@ msgstr ""
msgid "Target database"
msgstr "Pesquisar na Base de Dados"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Executa comando(s) SQL na base de dados %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Executa comando(s) SQL na base de dados %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Nome dos Campos"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Marcar este comando SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Deixar todos os utilizadores acederem a este marcador"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Não alterar esta pesquisa de fora da janela"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Mostrar de novo aqui este comando "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Ver apenas"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Localização do arquivo de texto"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "Directoria no servidor web para fazer upload"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7108,6 +6979,63 @@ msgstr "Identificador inválido"
msgid "Unknown Punctuation String"
msgstr "Pontuação desconhecida"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Executa comando(s) SQL na base de dados %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Executa comando(s) SQL na base de dados %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Nome dos Campos"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Marcar este comando SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Deixar todos os utilizadores acederem a este marcador"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Não alterar esta pesquisa de fora da janela"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Mostrar de novo aqui este comando "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Ver apenas"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Localização do arquivo de texto"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "Directoria no servidor web para fazer upload"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7115,6 +7043,48 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabela %s renomeada para %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7242,6 +7212,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Acrescenta um utilizador"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8276,8 +8278,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 "
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 61ead2886c..e446ba9e23 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-06-15 13:55+0200\n"
"Last-Translator: Jose Ivan Bezerra Vilarouca Filho \n"
"Language-Team: brazilian_portuguese \n"
-"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -48,10 +48,10 @@ msgstr "Procurar"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Procurar"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Executar"
@@ -132,9 +132,9 @@ msgstr "Comentário do Banco de Dados: "
msgid "Table comments"
msgstr "Comentários da tabela"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Comentários da tabela"
msgid "Column"
msgstr "Coluna"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Coluna"
msgid "Type"
msgstr "Tipo"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "Links para"
msgid "Comments"
msgstr "Comentários"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "Comentários"
msgid "No"
msgstr "Não"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -332,8 +333,8 @@ msgstr "Adicionar restrições"
msgid "Switch to copied database"
msgstr "Mudar para o Banco de Dados copiado"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -499,8 +500,8 @@ msgstr "Consulta SQL ao Banco de Dados %s:"
msgid "Submit Query"
msgstr "Enviar consulta SQL"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -607,7 +608,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Acesso negado"
@@ -728,11 +729,11 @@ msgstr "Rastreamento não está ativo."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 visão tem pelo menos esse número de linhas. Por favor, consulte a "
-"%sdocumentação%s."
+"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a %"
+"sdocumentação%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -749,7 +750,7 @@ msgstr "Replicação"
msgid "Sum"
msgstr "Soma"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s é o mecanismo de armazenamento padrão neste servidor MySQL."
@@ -798,8 +799,8 @@ msgstr "Visualização para impressão"
msgid "Empty"
msgstr "Limpar"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -872,9 +873,9 @@ msgstr "Atualizado"
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -968,8 +969,8 @@ msgstr "Dump foi salvo no arquivo %s."
#: import.php:58
#, 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."
msgstr ""
"Você provavelmente tentou carregar um arquivo muito grande. Veja referências "
"na %sdocumentation%s para burlar esses limites."
@@ -1154,11 +1155,11 @@ msgstr "Remover os usuários selecionados"
msgid "Close"
msgstr "Fechar"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Editar"
@@ -1720,224 +1721,12 @@ msgstr "Minuto"
msgid "Second"
msgstr "Segundo"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Tamanho da fonte"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"O arquivo carregado excede o tamanho definido na diretriz "
-"upload_max_filesize no php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"O arquivo carregado excede o tamanho definido na diretriz MAX_FILE_SIZE do "
-"formulário HTM."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Carregamento do arquivo foi apenas parcial."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Pasta temporária não encontrada."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Falhou ao salvar arquivo no disco."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Carregamento do arquivo parado pela extenção."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Erro desconhecido no carregamento do arquivo."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Erro ao mover o arquivo carregado, veja FAQ 1.11"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Nenhum índice definido!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Índices"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Único"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Pacote"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinalidade"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Cometário"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "A chave primária foi deletada"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Índice %s foi eliminado"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"A indexação %1$s e %2$s parecem ser iguais ou uma delas pode ter sido "
-"removida."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Banco de Dados"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Erro"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d linha afetada."
-msgstr[1] "%1$d linha(s) afetadas."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d linhas excluída."
-msgstr[1] "%1$d linhas(s) excluídas."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d linha inserida."
-msgstr[1] "%1$d linha(s) inseridas."
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Não foi possível salvar a tabela recente"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "tabelas recentes"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Não existem tabelas recentes"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Não há nenhuma informação detalhada do status disponível para esta storage "
-"engine."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s está disponível neste servidor MySQL."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s está desabilitado neste servidor MySQL."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Esse servidor MySQL não suporta o stored engine %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Banco de Dados inválido"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Nome de tabela inválida"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Erro ao renomear tabela %1$s para %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabela %s renomeada para %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Não foi possível salvar as preferências da tabela"
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Encontrado caminho inválido para imagens para o tema %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Nenhuma pré-visualização disponível."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "tome"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Tema padrão %s não encontrado!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s não encontrado!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Encontrado caminho inválido para o tema %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Não pode conectar: configurações inválidas."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Bem vindo ao %s"
@@ -1945,8 +1734,8 @@ msgstr "Bem vindo ao %s"
#: libraries/auth/config.auth.lib.php:106
#, 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 ""
"A provável razão para isso é que você não criou o arquivo de configuração. "
"Você deve usar o %1$ssetup script%2$s para criar um."
@@ -1963,43 +1752,43 @@ msgstr ""
"certificar que correspondam com as informações fornecidas pelo administrador "
"do servidor MySQL."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Autenticação"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Documentação do phpMyAdmin "
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "Você pode digitar a url/IP e a porta separados por um espaço."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Servidor"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Usuário:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Senha:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Seleção do Servidor"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Cookies devem estar ativos após este ponto."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -2007,14 +1796,14 @@ msgstr ""
"Autenticação sem uma senha é proibida pela configuração (veja "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Sem atividade por %s segundos ou mais, faça o login novamente"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Não foi possível se logar no servidor MySQL"
@@ -2053,6 +1842,14 @@ msgstr "Erro PBMS"
msgid "PBMS connection failed:"
msgstr "Falha na conexão PBMS:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Erro"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "o PBMS falhou na obtenção de informações BLOB:"
@@ -2105,6 +1902,11 @@ msgstr "Tabelas"
msgid "Data"
msgstr "Dados"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Índices"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2134,13 +1936,13 @@ msgstr "Verificar privilégios"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Não foi possível carregar configuração padrão de: \"%1$s\""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2387,84 +2189,9 @@ msgstr "Não existem arquivos para fazer upload"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Ambos"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Lugar nenhum"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Esquerda"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Direita"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Abrir"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Fechado"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Estrutura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "dados"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Estrutura e dados"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Rápida - exibir apenas o mínimo de opções para configurar"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Personalizada - exibir todas as opções possíveis para configurar"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Personalizada - como acima, mas sem a escolha rápida/personalizada."
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Inserções completas"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Inserções extendidas"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "ambos acima"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "nenhuma das acima."
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Tamanho da fonte"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3135,6 +2862,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Banco de Dados"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4667,6 +4400,85 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Ambos"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Lugar nenhum"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Esquerda"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Direita"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Abrir"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Fechado"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Estrutura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "dados"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Estrutura e dados"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Rápida - exibir apenas o mínimo de opções para configurar"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Personalizada - exibir todas as opções possíveis para configurar"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Personalizada - como acima, mas sem a escolha rápida/personalizada."
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Inserções completas"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Inserções extendidas"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "ambos acima"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "nenhuma das acima."
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4735,6 +4547,25 @@ msgstr ""
msgid "Add a new Event"
msgstr "Adicionar novo servidor"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Conexão para controle do usuário como definido nas configurações falhou."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "O servidor não está respondendo"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+"(ou o soquete do servidor MySQL local não está configurado corretamente)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Detalhes..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4809,9 +4640,9 @@ msgstr "Tamanho/Definir*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4870,6 +4701,11 @@ msgstr "Segurança"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Cometário"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4934,25 +4770,6 @@ msgid ""
"3.11[/a]"
msgstr "Pode ser aproximado. Veja o FAQ 3.11"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Conexão para controle do usuário como definido nas configurações falhou."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "O servidor não está respondendo"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-"(ou o soquete do servidor MySQL local não está configurado corretamente)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Detalhes..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5115,8 +4932,8 @@ msgstr ""
#| "happen: %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 ""
"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 "
@@ -5887,8 +5704,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6206,6 +6023,46 @@ msgstr "Visão"
msgid "Export contents"
msgstr "Tipo de exportação"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"O arquivo carregado excede o tamanho definido na diretriz "
+"upload_max_filesize no php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"O arquivo carregado excede o tamanho definido na diretriz MAX_FILE_SIZE do "
+"formulário HTM."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Carregamento do arquivo foi apenas parcial."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Pasta temporária não encontrada."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Falhou ao salvar arquivo no disco."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Carregamento do arquivo parado pela extenção."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Erro desconhecido no carregamento do arquivo."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Erro ao mover o arquivo carregado, veja FAQ 1.11"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6225,42 +6082,6 @@ msgstr "Resultado SQL"
msgid "Generated by"
msgstr "Gerado por"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Sem bases"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "Sem bases"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6323,6 +6144,42 @@ msgstr "Nome das colunas"
msgid "This plugin does not support compressed imports!"
msgstr "Esse plugin não suporta importações comprimidas!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Sem bases"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "Sem bases"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6347,6 +6204,42 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Nenhum índice definido!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Único"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Pacote"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinalidade"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "A chave primária foi deletada"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Índice %s foi eliminado"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"A indexação %1$s e %2$s parecem ser iguais ou uma delas pode ter sido "
+"removida."
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6359,6 +6252,27 @@ msgstr "Nenhum"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d linha afetada."
+msgstr[1] "%1$d linha(s) afetadas."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d linhas excluída."
+msgstr[1] "%1$d linhas(s) excluídas."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d linha inserida."
+msgstr[1] "%1$d linha(s) inseridas."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6603,6 +6517,18 @@ msgstr ""
msgid "This format has no options"
msgstr "Esse formato não tem opções"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Não foi possível salvar a tabela recente"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "tabelas recentes"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Não existem tabelas recentes"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "não está OK"
@@ -6997,63 +6923,6 @@ msgstr ""
msgid "Target database"
msgstr "Procurar no Banco de Dados"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Rodar consulta(s) SQL no servidor %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Fazer consulta SQL no Banco de Dados %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Limpar"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Nome das colunas"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Gravar essa consulta SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Deixar qualquer usuário acessar esse marcador"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Substituir marcador de mesmo nome existente"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Não sobrescrever esta consulta fora desta janela"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Delimitadores"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Mostrar esta consulta SQL novamente "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Apenas visualizar"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Localização do arquivo texto"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "Servidor web subiu o diretório"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7117,6 +6986,63 @@ msgstr "Identificador inválido"
msgid "Unknown Punctuation String"
msgstr "String de pontuação desconhecida"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Rodar consulta(s) SQL no servidor %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Fazer consulta SQL no Banco de Dados %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Limpar"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Nome das colunas"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Gravar essa consulta SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Deixar qualquer usuário acessar esse marcador"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Substituir marcador de mesmo nome existente"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Não sobrescrever esta consulta fora desta janela"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Delimitadores"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Mostrar esta consulta SQL novamente "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Apenas visualizar"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Localização do arquivo texto"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "Servidor web subiu o diretório"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7126,6 +7052,50 @@ msgstr ""
"O Validador SQL não pode ser inicializado. Verifique se você instalou a "
"extenção necessária do php conforme está escrito em %sdocumentation%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Não há nenhuma informação detalhada do status disponível para esta storage "
+"engine."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s está disponível neste servidor MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s está desabilitado neste servidor MySQL."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Esse servidor MySQL não suporta o stored engine %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Banco de Dados inválido"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Nome de tabela inválida"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Erro ao renomear tabela %1$s para %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabela %s renomeada para %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Não foi possível salvar as preferências da tabela"
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabela para estar vazia!"
@@ -7256,6 +7226,38 @@ msgstr "Definição da PARTIÇÃO"
msgid "+ Add a new value"
msgstr "Adicionar novo usuário"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Encontrado caminho inválido para imagens para o tema %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Nenhuma pré-visualização disponível."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "tome"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Tema padrão %s não encontrado!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s não encontrado!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Encontrado caminho inválido para o tema %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8378,8 +8380,8 @@ msgstr "Eliminar o Banco de Dados que possui o mesmo nome 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 "
diff --git a/po/ro.po b/po/ro.po
index 504b008032..bdc36aeeed 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-07-22 02:28+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: romanian \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: Pootle 2.0.1\n"
@@ -49,10 +49,10 @@ msgstr "Caută"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Caută"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Execută"
@@ -133,9 +133,9 @@ msgstr "Comentarii referitoare la baza de date: "
msgid "Table comments"
msgstr "Comentarii tabel"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -146,12 +146,12 @@ msgstr "Comentarii tabel"
msgid "Column"
msgstr "Denumirile coloanelor"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -161,9 +161,9 @@ msgstr "Denumirile coloanelor"
msgid "Type"
msgstr "Tip"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -201,12 +201,13 @@ msgstr "Trimitere la"
msgid "Comments"
msgstr "Comentarii"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -217,17 +218,17 @@ msgstr "Comentarii"
msgid "No"
msgstr "Nu"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -338,8 +339,8 @@ msgstr "Adaugă constrângeri"
msgid "Switch to copied database"
msgstr "Schimbă la tabela copiată"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -514,8 +515,8 @@ msgstr "Comandă SQL pe baza de date %s:"
msgid "Submit Query"
msgstr "Trimite comanda"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -623,7 +624,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Acces interzis"
@@ -750,8 +751,8 @@ msgstr "Monitorizarea nu este activată"
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
@@ -770,7 +771,7 @@ msgstr "Replicare"
msgid "Sum"
msgstr "Sumă"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s este motorul de stocare stabilit implicit pe acest server MySQL."
@@ -819,8 +820,8 @@ msgstr "Vizualizare imprimare"
msgid "Empty"
msgstr "Golește"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -899,9 +900,9 @@ msgstr "Actualizat(ă)"
msgid "Status"
msgstr "Stare"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -1002,11 +1003,11 @@ msgstr "Copia a fost salvată în fișierul %s."
#: import.php:58
#, 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."
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:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1198,11 +1199,11 @@ msgstr "Eliminarea utilizatorilor selectați"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Editare"
@@ -1820,230 +1821,12 @@ msgstr "în folosință"
msgid "Second"
msgstr "pe secundă"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Dimensiune font"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Fișierul încărcat depășește condiția upload_max_filesize din php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în "
-"formularul HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Fișierul a fost încărcat numai parțial."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Lipsește un dosar temporar."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Eșec la scrierea fișierului pe disc."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Încărcarea fișierului a fost împiedicată de extensie."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Eroare necunoscută la încărcarea fișierului."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Eroare la mutarea fișierului încărcat, vezi FAQ 1.11"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Index nu este definit!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indexuri"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unic"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Împachetat"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinalitate"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Comentariu"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Cheia primară a fost aruncată"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indexul %s a fost aruncat"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Baze de date"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Eroare"
-
-#: libraries/Message.class.php:260
-#, fuzzy, php-format
-#| msgid "%1$d row(s) affected."
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d rînd(uri) afectat(e)."
-msgstr[1] "%1$d rînd(uri) afectat(e)."
-msgstr[2] "%1$d rînd(uri) afectat(e)."
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "%1$d row(s) deleted."
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d rînd(uri) șters(e)."
-msgstr[1] "%1$d rînd(uri) șters(e)."
-msgstr[2] "%1$d rînd(uri) șters(e)."
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "%1$d row(s) inserted."
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d rînd(uri) inserat(e)."
-msgstr[1] "%1$d rînd(uri) inserat(e)."
-msgstr[2] "%1$d rînd(uri) inserat(e)."
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Nu există tabele"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-msgid "There are no recent tables"
-msgstr "Tabelele urmărite"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Nu există informații detaliate de stare disponibile pentru motorul de "
-"stocare."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s este disponibil pentru acest server MySQL."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s a fost dezactivat pentru acest server MySQL."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Acest server MySQL nu susține motorul de stocare %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Bază de date nevalidă"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Denumire de tabel nevalidă"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Eroare la redenumirea tabelului %1$s în %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabelului %s i s-a dat un numele de %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "No valid image path for theme %s found!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Nici o previzualizare disponibilă."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "alege"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Tema implicită %s nu a fost găsită!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s nu a fost găsită!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Calea temei nu a fost găsită pentru tema %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Conexiune esuata: setari invalide."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Bine ați venit la %s"
@@ -2051,8 +1834,8 @@ msgstr "Bine ați venit la %s"
#: libraries/auth/config.auth.lib.php:106
#, 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 "
@@ -2070,49 +1853,49 @@ msgstr ""
"fișierul de configurare și asigurați-vă că ele corespund informațiilor "
"furnizate de administratorul serverului MySQL."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Autentificare"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Documentație phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Server"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Nume utilizator:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Parolă:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Alegerea serverului"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Trebuie sa aveti activat \"cookies\"."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -2120,8 +1903,8 @@ msgstr ""
"Nu ați avut activitate de mai mult de %s secunde, vă rugăm să vă "
"autentificați din nou"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Nu pot face conexiunea catre serverul MySQL"
@@ -2163,6 +1946,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "MySQL connection collation"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Eroare"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2215,6 +2006,11 @@ msgstr "Tabele"
msgid "Data"
msgstr "Date"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indexuri"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2247,13 +2043,13 @@ msgstr "Verifică privilegiile"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2506,86 +2302,9 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Citare neînchisă"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Structură"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Structura și date"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Inserări complete"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Inserări extinse"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Dimensiune font"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3262,6 +2981,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Baze de date"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Opțiuni de afișare a bazelor de date"
@@ -4819,6 +4544,87 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Citare neînchisă"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Structură"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Structura și date"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Inserări complete"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Inserări extinse"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4886,6 +4692,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "Adaugă un server nou"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr "Connection for controluser as defined in your configuration failed."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Serverul nu răspunde"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(sau soclul serverului MySQL local nu este configurat momentan)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Detalii..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4960,9 +4783,9 @@ msgstr "Lungime/Setare"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -5019,6 +4842,11 @@ msgstr "Tip interogare"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Comentariu"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5082,23 +4910,6 @@ msgid ""
"3.11[/a]"
msgstr "Poate fi aproximativ. Vezi FAQ 3.11"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr "Connection for controluser as defined in your configuration failed."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Serverul nu răspunde"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(sau soclul serverului MySQL local nu este configurat momentan)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Detalii..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5269,12 +5080,12 @@ msgstr ""
#| "happen: %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:275
msgid "use this for future exports"
@@ -6075,8 +5886,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6391,6 +6202,44 @@ msgstr "Vizualizare"
msgid "Export contents"
msgstr "Modul de export"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "Fișierul încărcat depășește condiția upload_max_filesize din php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în "
+"formularul HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Fișierul a fost încărcat numai parțial."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Lipsește un dosar temporar."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Eșec la scrierea fișierului pe disc."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Încărcarea fișierului a fost împiedicată de extensie."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Eroare necunoscută la încărcarea fișierului."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Eroare la mutarea fișierului încărcat, vezi FAQ 1.11"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6408,42 +6257,6 @@ msgstr "Rezultat SQL"
msgid "Generated by"
msgstr "Generat de"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Nu sînt baze de date"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "Nu sînt baze de date"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6506,6 +6319,42 @@ msgstr "Denumirile coloanelor"
msgid "This plugin does not support compressed imports!"
msgstr "Modulul opțional nu suportă importuri comprimate!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Nu sînt baze de date"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "Nu sînt baze de date"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6530,6 +6379,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Index nu este definit!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unic"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Împachetat"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinalitate"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Cheia primară a fost aruncată"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indexul %s a fost aruncat"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters."
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6542,6 +6425,33 @@ msgstr "Nici unul(a)"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, fuzzy, php-format
+#| msgid "%1$d row(s) affected."
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d rînd(uri) afectat(e)."
+msgstr[1] "%1$d rînd(uri) afectat(e)."
+msgstr[2] "%1$d rînd(uri) afectat(e)."
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "%1$d row(s) deleted."
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d rînd(uri) șters(e)."
+msgstr[1] "%1$d rînd(uri) șters(e)."
+msgstr[2] "%1$d rînd(uri) șters(e)."
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "%1$d row(s) inserted."
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d rînd(uri) inserat(e)."
+msgstr[1] "%1$d rînd(uri) inserat(e)."
+msgstr[2] "%1$d rînd(uri) inserat(e)."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6785,6 +6695,22 @@ msgstr "Personalizează cadrul principal"
msgid "This format has no options"
msgstr "Acest format nu are opțiuni"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Nu există tabele"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+msgid "There are no recent tables"
+msgstr "Tabelele urmărite"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Nu este bine"
@@ -7180,64 +7106,6 @@ msgstr ""
msgid "Target database"
msgstr "Caută în baza de date"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Execută interogare/interogări SQL pe serverul %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Execută interogare SQL asupra bazei de date %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Calendar"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Denumirile coloanelor"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Pune semn de carte la această comandă SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Înlocuiește semnul de carte cu același nume"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "A nu se suprascrie peste această interogare din cealaltă fereastră"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Delimitator"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Afișează această comandă din nou aici "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Numai vizualizare"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Locația fișierului textual"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "director de încărcare al serverului Web"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7299,6 +7167,64 @@ msgstr "Identificator nevalid"
msgid "Unknown Punctuation String"
msgstr "Înșiruire de punctuație necunoscută"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Execută interogare/interogări SQL pe serverul %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Execută interogare SQL asupra bazei de date %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Calendar"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Denumirile coloanelor"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Pune semn de carte la această comandă SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Înlocuiește semnul de carte cu același nume"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "A nu se suprascrie peste această interogare din cealaltă fereastră"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Delimitator"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Afișează această comandă din nou aici "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Numai vizualizare"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Locația fișierului textual"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "director de încărcare al serverului Web"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7308,6 +7234,50 @@ msgstr ""
"Validatorul SQL nu poate fi inițializat. Verificați dacă e instalată "
"extesnsia necesară PHP, așa cum e descris în %sdocumentation%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Nu există informații detaliate de stare disponibile pentru motorul de "
+"stocare."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s este disponibil pentru acest server MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s a fost dezactivat pentru acest server MySQL."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Acest server MySQL nu susține motorul de stocare %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Bază de date nevalidă"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Denumire de tabel nevalidă"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Eroare la redenumirea tabelului %1$s în %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabelului %s i s-a dat un numele de %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabelul pare a fi gol!"
@@ -7439,6 +7409,38 @@ msgstr "Definiție PARTIȚIE"
msgid "+ Add a new value"
msgstr "Adaugă un server nou"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "No valid image path for theme %s found!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Nici o previzualizare disponibilă."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "alege"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Tema implicită %s nu a fost găsită!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s nu a fost găsită!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Calea temei nu a fost găsită pentru tema %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8572,8 +8574,8 @@ msgstr "Aruncă baza de date care are același nume ca utilizatorul."
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. "
diff --git a/po/ru.po b/po/ru.po
index edae544c72..0d30ca377c 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-06-16 22:26+0200\n"
"Last-Translator: Victor Volkov \n"
"Language-Team: russian \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: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -49,10 +49,10 @@ msgstr "Поиск"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Поиск"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "OK"
@@ -133,9 +133,9 @@ msgstr "Комментарий к базе данных:"
msgid "Table comments"
msgstr "Комментарий к таблице"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "Комментарий к таблице"
msgid "Column"
msgstr "Поле"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "Поле"
msgid "Type"
msgstr "Тип"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,12 +199,13 @@ msgstr "Связи"
msgid "Comments"
msgstr "Комментарии"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +216,17 @@ msgstr "Комментарии"
msgid "No"
msgstr "Нет"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -333,8 +334,8 @@ msgstr "Добавить ограничения"
msgid "Switch to copied database"
msgstr "Переключиться на скопированную базу данных"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -500,8 +501,8 @@ msgstr "SQL-запрос к базе данных %s:"
msgid "Submit Query"
msgstr "Выполнить запрос"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -610,7 +611,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "В доступе отказано"
@@ -733,8 +734,8 @@ msgstr "Слежение выключено."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
@@ -754,7 +755,7 @@ msgstr "Репликация"
msgid "Sum"
msgstr "Всего"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s - тип таблиц данного MySQL сервера устанавливаемый по умолчанию."
@@ -803,8 +804,8 @@ msgstr "Версия для печати"
msgid "Empty"
msgstr "Очистить"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -877,9 +878,9 @@ msgstr "Обновлён"
msgid "Status"
msgstr "Состояние"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -973,8 +974,8 @@ msgstr "Дамп был сохранен в файл %s."
#: import.php:58
#, 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."
msgstr ""
"Вероятно, размер загружаемого файла слишком велик. Способы обхода данного "
"ограничения описаны в %sдокументации%s."
@@ -1156,11 +1157,11 @@ msgstr "Удаление выбранных пользователей"
msgid "Close"
msgstr "Закрыть"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Изменить"
@@ -1702,226 +1703,12 @@ msgstr "Минута"
msgid "Second"
msgstr "Секунда"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Размер шрифта"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Размер загружаемого файла превышает значение директивы upload_max_filesize "
-"установленное в конфигурационном файле PHP (php.ini)."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Размер загружаемого файла превышает значение директивы MAX_FILE_SIZE, "
-"определенной в HTML форме."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Загруженный файл был загружен только частично."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Не найден каталог для хранения временных файлов."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Ошибка при попытке записи файла на диск."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Загрузка файла остановлена из-за расширения."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "При время загрузке файла произошла неизвестная ошибка."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Ошибка при перемещении загруженного файла, смотрите [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Индекс не определен!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Индексы"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Уникальный"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Упакован"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Уникальных элементов"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Комментарий"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Первичный ключ был удален"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Индекс %s был удален"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Базы данных"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Ошибка"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Затронута %1$d строка."
-msgstr[1] "Затронуто %1$d строки."
-msgstr[2] "Затронуто %1$d строк."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Удалена %1$d строка."
-msgstr[1] "Удалено %1$d строки."
-msgstr[2] "Удалено %1$d строк."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Добавлена %1$d строка."
-msgstr[1] "Добавлено %1$d строки."
-msgstr[2] "Добавлено %1$d строк."
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Не удалось сохранить последнюю таблицу"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Недавние таблицы"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Отсутствуют недавние таблицы"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Дополнительная информация о состоянии данного типа таблиц - отсутствует."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "Данный MySQL-сервер поддерживает таблицы типа %s."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "Тип таблиц %s был отключен на данном MySQL сервере."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Данный сервер MySQL не поддерживает тип таблиц %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Некорректная база данных"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Неправильное имя таблицы"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Ошибка при переименовании таблицы %1$s в %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Таблица %s была переименована в %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Не получилось сохранить настройки интерфейса таблицы"
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Не найден правильный путь к изображениям для темы %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Предпросмотр не доступен."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "Применить"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Тема по-умолчанию %s не найдена!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Тема %s не найдена!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Путь к файлам темы %s не найден!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Соединение невозможно! Неверные настройки."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Добро пожаловать в %s"
@@ -1929,8 +1716,8 @@ msgstr "Добро пожаловать в %s"
#: libraries/auth/config.auth.lib.php:106
#, 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."
@@ -1947,57 +1734,57 @@ msgstr ""
"php и удостоверьтесь, что они соответствуют данным полученным от "
"администратора сервера MySQL."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Авторизация"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Документация phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "Вы можете ввести хост/IP адрес и порт разделенные пробелом."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Сервер:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Пользователь:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Пароль:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Выбор сервера"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Для полноценной работы необходима поддержка cookies браузером."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "Вход без пароля запрещен при конфигурации (смотрите AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
"Отсутствие активности более %s секунд, пожалуйста, авторизуйтесь заново"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Невозможно подключиться к серверу MySQL"
@@ -2036,6 +1823,14 @@ msgstr "Ошибка PBMS"
msgid "PBMS connection failed:"
msgstr "Ошибка подключения к PBMS:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Ошибка"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "Ошибка получения информации о BLOB данных от PBMS:"
@@ -2088,6 +1883,11 @@ msgstr "Таблицы"
msgid "Data"
msgstr "Данные"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Индексы"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2117,13 +1917,13 @@ msgstr "Проверить привилегии"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Не получилось сохранить настройки"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2372,77 +2172,9 @@ msgstr "Файлы для загрузки отсутствуют"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Оба"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Нигде"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Налево"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Направо"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Открыт"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Закрыт"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "структура"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "данные"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "структура и данные"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Быстро - отображать минимальный набор параметров"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "По выбору - отображать все возможные параметры"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "По выбору - как выше, но без выбора быстро/по выбору"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "полная вставка"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "расширенная вставка"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "оба верхних варианта"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "иначе, чем в вариантах выше"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Размер шрифта"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3106,6 +2838,12 @@ msgstr "Установите директории импорта и экспор
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Базы данных"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Параметры отображения списка баз данных"
@@ -4758,6 +4496,78 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Некорректно введен IP адрес: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Оба"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Нигде"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Налево"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Направо"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Открыт"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Закрыт"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "структура"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "данные"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "структура и данные"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Быстро - отображать минимальный набор параметров"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "По выбору - отображать все возможные параметры"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "По выбору - как выше, но без выбора быстро/по выбору"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "полная вставка"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "расширенная вставка"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "оба верхних варианта"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "иначе, чем в вариантах выше"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4828,6 +4638,26 @@ msgstr ""
msgid "Add a new Event"
msgstr "Добавить новый сервер"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Не удалось установить подключение для пользователя указанного в директиве "
+"controluser, с помощью параметров определенных в конфигурационном файле "
+"config.inc.php."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Сервер не отвечает"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(либо сокет локального MySQL-сервера некорректно настроен)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Детали..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4902,9 +4732,9 @@ msgstr "Длина/значения"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4963,6 +4793,11 @@ msgstr "Безопасность"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Комментарий"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5029,26 +4864,6 @@ msgstr ""
"Может быть приблизительно. Смотрите [a@./Documentation."
"html#faq3_11@Documentation]FAQ 3.11[/a]"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Не удалось установить подключение для пользователя указанного в директиве "
-"controluser, с помощью параметров определенных в конфигурационном файле "
-"config.inc.php."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Сервер не отвечает"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(либо сокет локального MySQL-сервера некорректно настроен)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Детали..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5189,8 +5004,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, благодаря чему возможна "
"вставка текущей даты и времени. Дополнительно могут быть использованы "
@@ -5971,8 +5786,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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."
@@ -6281,6 +6096,48 @@ msgstr "Представления"
msgid "Export contents"
msgstr "Экспортировать содержимое"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Размер загружаемого файла превышает значение директивы upload_max_filesize "
+"установленное в конфигурационном файле PHP (php.ini)."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Размер загружаемого файла превышает значение директивы MAX_FILE_SIZE, "
+"определенной в HTML форме."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Загруженный файл был загружен только частично."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Не найден каталог для хранения временных файлов."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Ошибка при попытке записи файла на диск."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Загрузка файла остановлена из-за расширения."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "При время загрузке файла произошла неизвестная ошибка."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Ошибка при перемещении загруженного файла, смотрите [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6300,40 +6157,6 @@ msgstr "Результат SQL-запроса"
msgid "Generated by"
msgstr "Создан"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Следующие структуры были созданы, либо изменены. Вы можете:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Просмотреть детали структуры нажав на её имя"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "Изменить любую настройку нажав на соответствующую ссылку \"Параметры\""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Отредактировать структуру перейдя по ссылке \"Структура\""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Перейти к базе данных"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "настройки"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Перейти к таблице"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Перейти к представлению (VIEW)"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6400,6 +6223,40 @@ msgstr "Названия столбцов"
msgid "This plugin does not support compressed imports!"
msgstr "Этот модуль не поддерживает импорт сжатых данных!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Следующие структуры были созданы, либо изменены. Вы можете:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Просмотреть детали структуры нажав на её имя"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "Изменить любую настройку нажав на соответствующую ссылку \"Параметры\""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Отредактировать структуру перейдя по ссылке \"Структура\""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Перейти к базе данных"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "настройки"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Перейти к таблице"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Перейти к представлению (VIEW)"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6426,6 +6283,40 @@ msgstr ""
"Выбранный XML файл некорректен, либо неполон. Проверьте возможные ошибки и "
"попробуйте ещё раз."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Индекс не определен!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Уникальный"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Упакован"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Уникальных элементов"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Первичный ключ был удален"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Индекс %s был удален"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён."
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6436,6 +6327,30 @@ msgstr "Нет"
msgid "Convert to Kana"
msgstr "Конвертировать в Кану"
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Затронута %1$d строка."
+msgstr[1] "Затронуто %1$d строки."
+msgstr[2] "Затронуто %1$d строк."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Удалена %1$d строка."
+msgstr[1] "Удалено %1$d строки."
+msgstr[2] "Удалено %1$d строк."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Добавлена %1$d строка."
+msgstr[1] "Добавлено %1$d строки."
+msgstr[2] "Добавлено %1$d строк."
+
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "От"
@@ -6674,6 +6589,18 @@ msgstr "Обновить фрейм навигации"
msgid "This format has no options"
msgstr "Для этого формата нет настраиваемых параметров"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Не удалось сохранить последнюю таблицу"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Недавние таблицы"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Отсутствуют недавние таблицы"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Не готово"
@@ -7057,61 +6984,6 @@ msgstr "Различие"
msgid "Target database"
msgstr "Целевая база данных"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Выполнить SQL-запрос(ы) на сервере %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Выполнить SQL-запрос(ы) к базе данных %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Очистить"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Столбцы"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Создание закладки"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Доступна для всех пользователей"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Заменить существующую с таким же именем"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Заблокировать содержимое окна запросов"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Разделитель"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Показать данный запрос снова"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Просмотр"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Выбор файла"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "Из каталога загрузки"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7174,6 +7046,61 @@ msgstr "Неправильный идентификатор"
msgid "Unknown Punctuation String"
msgstr "Неизвестная пунктуация"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Выполнить SQL-запрос(ы) на сервере %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Выполнить SQL-запрос(ы) к базе данных %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Очистить"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Столбцы"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Создание закладки"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Доступна для всех пользователей"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Заменить существующую с таким же именем"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Заблокировать содержимое окна запросов"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Разделитель"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Показать данный запрос снова"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Просмотр"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Выбор файла"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "Из каталога загрузки"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7183,6 +7110,49 @@ msgstr ""
"Проверка синтаксиса SQL не осуществима. Проверьте, установлены ли "
"необходимые модули расширений для PHP, описанные в %sдокументации%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Дополнительная информация о состоянии данного типа таблиц - отсутствует."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "Данный MySQL-сервер поддерживает таблицы типа %s."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "Тип таблиц %s был отключен на данном MySQL сервере."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Данный сервер MySQL не поддерживает тип таблиц %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Некорректная база данных"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Неправильное имя таблицы"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Ошибка при переименовании таблицы %1$s в %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Таблица %s была переименована в %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Не получилось сохранить настройки интерфейса таблицы"
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Таблица - пуста!"
@@ -7301,6 +7271,38 @@ msgstr "Определение разделов (PARTITION)"
msgid "+ Add a new value"
msgstr "+ Добавить новое значение"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Не найден правильный путь к изображениям для темы %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Предпросмотр не доступен."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "Применить"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Тема по-умолчанию %s не найдена!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Тема %s не найдена!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Путь к файлам темы %s не найден!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8351,8 +8353,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. Содержимое этих таблиц может "
@@ -9941,8 +9943,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 не является выделенным и "
"кроме вас принадлежит тысячам пользователей того же Интернет Провайдера."
@@ -10708,8 +10710,8 @@ msgid ""
"No themes support; please check your configuration and/or your themes in "
"directory %s."
msgstr ""
-"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге "
-"%s."
+"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге %"
+"s."
#: themes.php:41
msgid "Get more themes!"
diff --git a/po/si.po b/po/si.po
index d02c1d6209..c97c64dcc4 100644
--- a/po/si.po
+++ b/po/si.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-06-04 15:35+0200\n"
"Last-Translator: Madhura Jayaratne \n"
"Language-Team: sinhala \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: Pootle 2.0.5\n"
@@ -47,10 +47,10 @@ msgstr "සෙවීම"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "සෙවීම"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "යන්න"
@@ -129,9 +129,9 @@ msgstr "දත්තගබඩා විස්තර: "
msgid "Table comments"
msgstr "වගු විස්තර"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -140,12 +140,12 @@ msgstr "වගු විස්තර"
msgid "Column"
msgstr "තීර"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -155,9 +155,9 @@ msgstr "තීර"
msgid "Type"
msgstr "වර්ගය"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -195,12 +195,13 @@ msgstr "Links to"
msgid "Comments"
msgstr "විස්තරය"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -211,17 +212,17 @@ msgstr "විස්තරය"
msgid "No"
msgstr "නැත"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -329,8 +330,8 @@ msgstr "සීමා බාධවන් එක් කරන්න"
msgid "Switch to copied database"
msgstr "පිටපත් කරන ලද දත්තගබඩාව වෙත මාරු වන්න"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -494,8 +495,8 @@ msgstr "%s දත්තගබඩාව මත SQL විමසුම:"
msgid "Submit Query"
msgstr "විමසුම ඉදිරිපත් කරන්න"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -602,7 +603,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "පිවිසුම වලක්වා ඇත"
@@ -723,8 +724,8 @@ msgstr "අවධානය අක්රීයයි."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 අධ්යනය කරන්න."
@@ -743,7 +744,7 @@ msgstr "අනුරූ කරණය"
msgid "Sum"
msgstr "එකතුව"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s is the default storage engine on this MySQL server."
@@ -792,8 +793,8 @@ msgstr "මුද්රණ දර්ශනය"
msgid "Empty"
msgstr "හිස්"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -866,9 +867,9 @@ msgstr "යාවත්කාලීන කරන ලදි"
msgid "Status"
msgstr "තත්වය"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -962,11 +963,11 @@ msgstr "%s ගොනුවට නික්ෂේප දත්ත සුරකි
#: import.php:58
#, 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."
msgstr ""
-"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."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1144,11 +1145,11 @@ msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත
msgid "Close"
msgstr "වසන්න"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "සංස්කරණය කරන්න"
@@ -1700,219 +1701,12 @@ msgstr "මිනිත්තු"
msgid "Second"
msgstr "තත්පර"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "ෆොන්ට් එකෙහි ප්රමාණය"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "උඩුගත කෙරුනු ගොනුව php.ini හි upload_max_filesize අගය ඉක්මවයි."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr "උඩුගත කෙරුනු ගොනුව HTML පෝරමයෙහි සඳහන් MAX_FILE_SIZE අගය ඉක්මවයි."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "උඩුගත කෙරුනු ගොනුවේ කොටසක් පමණක් උඩුගත විය."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "තාවකාලික ෆෝල්ඩරයක් නැතිවී ඇත."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "ගොනුව ඩිස්කයට පිටපත් කිරීම අසාර්ථක විය."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "දිගුව නිසා ගොනුව උඩුගත කිරීම නවතන ලදි."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "ගොනුව උඩුගත කිරීමේදී දෝෂයක් ඇති විය."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"උඩුගත කෙරුණු ගොනුව ගෙන යාමේදී දෝෂයක් ඇති විය, [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a] බලන්න"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "No index defined!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "සූචියන්"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "අනන්ය"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "අහුරන ලද"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinality"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "ටීකාව"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "ප්රාථමික මූලය හලන ලදි"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "%s සූචිය හලන ලදි"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr "%1$s හා %2$s සුචි එක සමාන බැවින් එකක් ඉවත් කල හැක."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "දත්තගබඩා"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "දෝෂය"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "පේළියකට බලපෑවේය."
-msgstr[1] "පේළි %1$dකට බලපෑවේය."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "පේළි %1$d ක් ඉවත් කෙරුනි."
-msgstr[1] "පේළි %1$d ක් ඉවත් කෙරුනි."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "පේළි %1$d ක් ඇතුල් කෙරුනි."
-msgstr[1] "පේළි %1$d ක් ඇතුල් කෙරුනි."
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "නූතන වගු සුරැකීම අසමත් විය"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "නූතන වගු"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "නූතන වගු කිසිවක් නොමැත"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"There is no detailed status information available for this storage engine."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s is available on this MySQL server."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s has been disabled for this MySQL server."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "This MySQL server does not support the %s storage engine."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "වලංගු නොවන දත්තගබඩාව"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "වලංගු නොවන වගු නම"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "%1$s සිට %2$s දක්වා වගුවේ නම් වෙනස් කිරීමේ දෝෂයක් ඇත"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "%s වගුව %s බවට නම වෙනස් කරන ලදි"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "වගු පරිශීලක අතුරුමුහුණත් සඳහා අභිමතයන් සුරැකීම අසමත් විය"
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "No valid image path for theme %s found!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "No preview available."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "take it"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "%s පෙරනිමි තේමාව සොයාගැනීමට නොමැත!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Theme %s not found!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Theme path not found for theme %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "සම්බන්ධ විය නොහැක : වලංගු නොවන සැකසුමකි."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "%s වෙත ආයුබෝවන්"
@@ -1920,8 +1714,8 @@ msgstr "%s වෙත ආයුබෝවන්"
#: libraries/auth/config.auth.lib.php:106
#, 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 ""
"Probably reason of this is that you did not create configuration file. You "
"might want to use %1$ssetup script%2$s to create one."
@@ -1938,56 +1732,56 @@ msgstr ""
"configuration and make sure that they correspond to the information given by "
"the administrator of the MySQL server."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "ලොගින් වන්න"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin ලියකියවිලි"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "සේවාදායකය:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "භාවිත නාමය:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "මුරපදය:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "සේවාදායකයේ තේරීම"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "මෙම ස්ථානය පසු කිරීම සඳහා කුකීස් - Cookies සක්රිය කල යුතුයි."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "මුර පදයක් නොමැතිව ඇතුල් වීම ඔබගේ සිටුවම් මගින් වලකා ඇත. (AllowNoPassword බලන්න)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "No activity within %s seconds; please log in again"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "MySQL සේවාදායකයට ලොග් විය නොහැක"
@@ -2026,6 +1820,14 @@ msgstr "PBMS දෝෂය"
msgid "PBMS connection failed:"
msgstr "PBMS සම්බන්ධතාවය අසමත් විය:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "දෝෂය"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS BLOB තොරතුරු ලබාගැනීම අසමත් විය:"
@@ -2078,6 +1880,11 @@ msgstr "වගු"
msgid "Data"
msgstr "දත්ත"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "සූචියන්"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2107,13 +1914,13 @@ msgstr "වරප්රසාද පරීක්ෂා කරන්න"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "වින්යාස සුරැකීම අසමත් විය"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2358,77 +2165,9 @@ msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැ
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "දෙකම"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "කොහේවත් නැත"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "වම"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "දකුණ"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "විවෘත"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "වසන ලද"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "සැකිල්ල"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "දත්ත"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "සැකිල්ල සහ දත්ත"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "කඩිනම් - අවම තෝරා ගැනීම් පමණක් පෙන්වන්න"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "අභිමත - සියලුම තෝරා ගැනීම් පෙන්වන්න"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "අභිමත - ඉහත මෙන්, නමුත් අභිමත/කඩිනම් තෝරාගැනීම් නොමෙතිව"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "සම්පූර්ණ ඇතුළු කිරීම්"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "විස්තෘත ඇතුළු කිරීම්"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "ඉහත ද්විත්වයම"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "ඉහත දෙකින් එකක්වත් නොව"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "ෆොන්ට් එකෙහි ප්රමාණය"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3067,6 +2806,12 @@ msgstr "ආනයන, අපනයන ඩිරෙක්ටරි සහ හැ
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "දත්තගබඩා"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "දත්තගබඩා පෙන්වුම් විකල්ප"
@@ -4570,6 +4315,78 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "දෙකම"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "කොහේවත් නැත"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "වම"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "දකුණ"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "විවෘත"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "වසන ලද"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "සැකිල්ල"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "දත්ත"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "සැකිල්ල සහ දත්ත"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "කඩිනම් - අවම තෝරා ගැනීම් පමණක් පෙන්වන්න"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "අභිමත - සියලුම තෝරා ගැනීම් පෙන්වන්න"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "අභිමත - ඉහත මෙන්, නමුත් අභිමත/කඩිනම් තෝරාගැනීම් නොමෙතිව"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "සම්පූර්ණ ඇතුළු කිරීම්"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "විස්තෘත ඇතුළු කිරීම්"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "ඉහත ද්විත්වයම"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "ඉහත දෙකින් එකක්වත් නොව"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4638,6 +4455,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "නව සේවාදායකයක් එක් කරන්න"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "සේවාදායකය ප්රතිචාර නොදක්වයි"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(or the local MySQL server's socket is not correctly configured)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "තොරතුරු..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4712,9 +4546,9 @@ msgstr "දිග/අගයන්"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4773,6 +4607,11 @@ msgstr "ආරක්ෂාව"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "ටීකාව"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4839,23 +4678,6 @@ msgstr ""
"සමහර විට ආසන්න වශයෙන්. [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/"
"a] බලන්න"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "සේවාදායකය ප්රතිචාර නොදක්වයි"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(or the local MySQL server's socket is not correctly configured)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "තොරතුරු..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5004,12 +4826,12 @@ msgstr ""
#| "happen: %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. 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:275
msgid "use this for future exports"
@@ -5752,8 +5574,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6052,6 +5874,44 @@ msgstr "දසුන්"
msgid "Export contents"
msgstr "අපනයන වර්ගය"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "උඩුගත කෙරුනු ගොනුව php.ini හි upload_max_filesize අගය ඉක්මවයි."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr "උඩුගත කෙරුනු ගොනුව HTML පෝරමයෙහි සඳහන් MAX_FILE_SIZE අගය ඉක්මවයි."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "උඩුගත කෙරුනු ගොනුවේ කොටසක් පමණක් උඩුගත විය."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "තාවකාලික ෆෝල්ඩරයක් නැතිවී ඇත."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "ගොනුව ඩිස්කයට පිටපත් කිරීම අසාර්ථක විය."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "දිගුව නිසා ගොනුව උඩුගත කිරීම නවතන ලදි."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "ගොනුව උඩුගත කිරීමේදී දෝෂයක් ඇති විය."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"උඩුගත කෙරුණු ගොනුව ගෙන යාමේදී දෝෂයක් ඇති විය, [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a] බලන්න"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6071,43 +5931,6 @@ msgstr "SQL ප්රතිළුල"
msgid "Generated by"
msgstr "උත්පාදනය කරන ලද්දේ"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "දත්තගබඩා නොමැත"
-
-# සිටුවම් = settings. Source: Glossary of Information Technology Terms - ICTA
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "සිටුවම්"
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "දත්තගබඩා නොමැත"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6171,6 +5994,43 @@ msgstr "තීර නම්"
msgid "This plugin does not support compressed imports!"
msgstr "This plugin does not support compressed imports!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "දත්තගබඩා නොමැත"
+
+# සිටුවම් = settings. Source: Glossary of Information Technology Terms - ICTA
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "සිටුවම්"
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "දත්තගබඩා නොමැත"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr "ප්රතිශත පූර්ණ සංඛ්යා ලෙස ආනයනය කරන්න (උදා. 12.00%, 12 ලෙස)"
@@ -6193,6 +6053,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "No index defined!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "අනන්ය"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "අහුරන ලද"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinality"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "ප්රාථමික මූලය හලන ලදි"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "%s සූචිය හලන ලදි"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr "%1$s හා %2$s සුචි එක සමාන බැවින් එකක් ඉවත් කල හැක."
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6205,6 +6099,27 @@ msgstr "කිසිවක් නැත"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "පේළියකට බලපෑවේය."
+msgstr[1] "පේළි %1$dකට බලපෑවේය."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "පේළි %1$d ක් ඉවත් කෙරුනි."
+msgstr[1] "පේළි %1$d ක් ඉවත් කෙරුනි."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "පේළි %1$d ක් ඇතුල් කෙරුනි."
+msgstr[1] "පේළි %1$d ක් ඇතුල් කෙරුනි."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6447,6 +6362,18 @@ msgstr ""
msgid "This format has no options"
msgstr "මෙම ආකෘතියේ ආකෘති-විශේෂී තෝරා ගැනීම් කිසිවක් නැත"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "නූතන වගු සුරැකීම අසමත් විය"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "නූතන වගු"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "නූතන වගු කිසිවක් නොමැත"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "OK නැත"
@@ -6830,64 +6757,6 @@ msgstr ""
msgid "Target database"
msgstr "දත්තගබඩාවේ සොයන්න"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "SQL විමසුමක් සිදු කරන්න/%s සේවාදායකය මත විමසුම්"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "SQL විමසුමක් සිදු කරන්න/%s දත්තගබඩාව මත විමසුම්"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "දින දර්ශනය"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "තීර නම්"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "එකම නම ඇති පොත් සලකුණ ප්රතිස්ථාපනය කරන්න"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Do not overwrite this query from outside the window"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "පරිසීමකය"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " මෙම විමසුම මෙහි නැවත පෙන්වන්න "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "දර්ශනය කිරීම පමණි"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "පාඨ ගොනුවෙහි පිහිටුම"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "වෙබ් සේවාදායකයේ උඩුගත ඩිරෙක්ටරිය"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6950,6 +6819,64 @@ msgstr "වලංගු නොවන හඳුන්වනය"
msgid "Unknown Punctuation String"
msgstr "නොදන්නා විරාම අකුරු වැල"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "SQL විමසුමක් සිදු කරන්න/%s සේවාදායකය මත විමසුම්"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "SQL විමසුමක් සිදු කරන්න/%s දත්තගබඩාව මත විමසුම්"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "දින දර්ශනය"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "තීර නම්"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "එකම නම ඇති පොත් සලකුණ ප්රතිස්ථාපනය කරන්න"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Do not overwrite this query from outside the window"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "පරිසීමකය"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " මෙම විමසුම මෙහි නැවත පෙන්වන්න "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "දර්ශනය කිරීම පමණි"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "පාඨ ගොනුවෙහි පිහිටුම"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "වෙබ් සේවාදායකයේ උඩුගත ඩිරෙක්ටරිය"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6959,6 +6886,49 @@ msgstr ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"There is no detailed status information available for this storage engine."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s is available on this MySQL server."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s has been disabled for this MySQL server."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "This MySQL server does not support the %s storage engine."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "වලංගු නොවන දත්තගබඩාව"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "වලංගු නොවන වගු නම"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "%1$s සිට %2$s දක්වා වගුවේ නම් වෙනස් කිරීමේ දෝෂයක් ඇත"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "%s වගුව %s බවට නම වෙනස් කරන ලදි"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "වගු පරිශීලක අතුරුමුහුණත් සඳහා අභිමතයන් සුරැකීම අසමත් විය"
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7085,6 +7055,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "+ නව භාවිතා කරන්නෙක් එක් කරන්න"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "No valid image path for theme %s found!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "No preview available."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "take it"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "%s පෙරනිමි තේමාව සොයාගැනීමට නොමැත!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Theme %s not found!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Theme path not found for theme %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -7252,8 +7254,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:142
msgid "Could not save configuration"
@@ -8140,8 +8142,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 හි වරප්රසාද වගුවෙනි. "
"සේවාදායකයේ වරප්රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්රසාද වලට "
diff --git a/po/sk.po b/po/sk.po
index 3e90fed1e9..6acb1762ec 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-06-03 14:53+0200\n"
"Last-Translator: Martin Lacina \n"
"Language-Team: slovak \n"
-"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: sk\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -48,10 +48,10 @@ msgstr "Hľadať"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Hľadať"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Vykonaj"
@@ -132,9 +132,9 @@ msgstr "Komentár k databáze: "
msgid "Table comments"
msgstr "Komentár k tabuľke"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Komentár k tabuľke"
msgid "Column"
msgstr "Stĺpce"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Stĺpce"
msgid "Type"
msgstr "Typ"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "Linkovať na"
msgid "Comments"
msgstr "Komentáre"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "Komentáre"
msgid "No"
msgstr "Nie"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -332,8 +333,8 @@ msgstr "Pridať obmedzenia"
msgid "Switch to copied database"
msgstr "Prepnúť na skopírovanú databázu"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -498,8 +499,8 @@ msgstr "SQL dopyt v databáze %s:"
msgid "Submit Query"
msgstr "Odošli dopyt"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -608,7 +609,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Prístup zamietnutý"
@@ -732,8 +733,8 @@ msgstr "Sledovanie nie je aktívne."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
@@ -752,7 +753,7 @@ msgstr "Replikácia"
msgid "Sum"
msgstr "Celkom"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "Na tomto MySQL serveri je prednastaveným úložným systémom %s."
@@ -801,8 +802,8 @@ msgstr "Náhľad k tlači"
msgid "Empty"
msgstr "Vyprázdniť"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -875,9 +876,9 @@ msgstr "Aktualizované"
msgid "Status"
msgstr "Stav"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -971,8 +972,8 @@ msgstr "Výpis bol uložený do súboru %s."
#: import.php:58
#, 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."
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ť."
@@ -1155,11 +1156,11 @@ msgstr "Odstránenie vybraných používateľov"
msgid "Close"
msgstr "Zavrieť"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Upraviť"
@@ -1703,232 +1704,12 @@ msgstr "Minúty"
msgid "Second"
msgstr "Sekundy"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Veľkosť písma"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Veľkosť nahrávaného súboru prekračuje hodnotu premennej upload_max_filesize "
-"v php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Veľkosť nahrávaného súboru prekračuje hodnotu premennej MAX_FILE_SIZE, ktorá "
-"bola nastavená v HTML formulári."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Súbor bol nahraný len čiastočne."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Chýba adresár pre dočasné súbory."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Chyba pri zápise súboru na disk."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Nahrávanie súboru bolo zastavené rozšírením."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Neznáma chyba pri nahrávaní súboru."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Chyba pri presune nahrávaného súboru, viď [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Nebol definovaný žiadny index!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indexy"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unikátny"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Zabalené"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Mohutnosť"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Komentár"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primárny kľúč bol zrušený"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Index pre %s bol odstránený"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Indexy %1$s a %2$s vyzerajú rovnaké a jeden z nich môže byť pravdepodobne "
-"odstránený."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Databázy"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Chyba"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Ovplyvnený bol %1$d riadok."
-msgstr[1] "Ovplyvnené boli %1$d riadky."
-msgstr[2] "Ovplyvnených bolo %1$d riadkov."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Bol zmazaný %1$d riadok."
-msgstr[1] "Boli zmazané %1$d riadky."
-msgstr[2] "Bolo zmazaných %1$d riadkov."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Bol vložený %1$d riadok."
-msgstr[1] "Boli vložené %1$d riadky."
-msgstr[2] "Bolo vložených %1$d riadkov."
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Nepodarilo sa uložiť najnovšíu tabuľku"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Počítať tabuľky"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no files to upload"
-msgid "There are no recent tables"
-msgstr "Žiadny súbor pre nahrávanie"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Pre tento úložný systém nie sú dostupné žiadne podrobnejšie informácie."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "Úložný systém %s je dostupný na tomto MySQL serveri."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "Úložný systém %s bol zakázaný na tomto MySQL serveri."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Tento MySQL server nepodporuje úložný systém %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Chybná databáza"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Chybné meno tabuľky"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Chyba pri premenovaní tabuľky %1$s na %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabuľka %s bola premenovaná na %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Nebola nájdená platná cesta k obrázkom pre vzhľad %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Náhľad nie je dostupný."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "zvoliť"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Predvolený vzhľad %s nebol nájdený!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Vzhľad %s nebol nájdený!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Nebola nájdená platná cesta ku vzhľadu %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Nepodarilo sa pripojiť: chybné nastavenia."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Vitajte v %s"
@@ -1936,8 +1717,8 @@ msgstr "Vitajte v %s"
#: libraries/auth/config.auth.lib.php:106
#, 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."
@@ -1953,57 +1734,57 @@ msgstr ""
"Skontrolujte prosím meno serveru, používateľské meno a heslo v súbore config."
"inc.php a s tým, ktoré ste dostali o administrátora MySQL servera."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Login"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin Dokumentácia"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "Možete zadať medzerou oddelený hostname/IP adresu a port."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Server:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Používateľ:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Heslo:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Voľba serveru"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Cookies musia byť povolené, pokiaľ chcete pokračovať."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"Prihlásenie bez hesla je zakázané v konfigurácií (pozri AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Boli ste neaktívni viac ako %s sekúnd, prihláste sa prosím znovu"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Nedá sa prihlásiť k MySQL serveru"
@@ -2044,6 +1825,14 @@ msgstr "Chyba PBMS"
msgid "PBMS connection failed:"
msgstr "Pripojenie k PBMS zlyhalo:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Chyba"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "Získavanie informácii o BLOBe z PBMS zlyhalo:"
@@ -2096,6 +1885,11 @@ msgstr "Tabuľky"
msgid "Data"
msgstr "Dáta"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indexy"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2124,13 +1918,13 @@ msgstr "Skontrolovať oprávnenia"
#: libraries/common.inc.php:587
#, fuzzy
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Slave replikácia"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2375,77 +2169,9 @@ msgstr "Žiadny súbor pre nahrávanie"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Obidva"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Otvorené"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Zatvorené"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "štruktúra"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "dáta"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "štruktúra a dáta"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Rýchly - zobrazí len minimum volieb pre nastavenie"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Vlastný - zobrazí všetky voľby nastavenia"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Vlastný - ako vyššie, ale bez voľby rýchly/vlastný"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "úplné vloženia"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "Rozšírené vkladania"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "obidve vyššie uvedené"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "žiadny z vyššie uvedených"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Veľkosť písma"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3098,6 +2824,12 @@ msgstr "Nastaví adresáre pre import a export a voľby kompresie"
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Databázy"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Nastavenia zobrazenia databáz"
@@ -4706,6 +4438,78 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Nesprávna IP adresa: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Obidva"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Otvorené"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Zatvorené"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "štruktúra"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "dáta"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "štruktúra a dáta"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Rýchly - zobrazí len minimum volieb pre nastavenie"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Vlastný - zobrazí všetky voľby nastavenia"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Vlastný - ako vyššie, ale bez voľby rýchly/vlastný"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "úplné vloženia"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "Rozšírené vkladania"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "obidve vyššie uvedené"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "žiadny z vyššie uvedených"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4775,6 +4579,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "Pridať nového používateľa"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr "Nepodarilo sa pripojiť ku controluser podľa nastavení z konfigurácie."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Server neodpovedá"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(alebo soket lokálneho MySQL servra nie je správne nastavený)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Podrobnosti..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4849,9 +4670,9 @@ msgstr "Dĺžka/Nastaviť*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4909,6 +4730,11 @@ msgstr "Zabezpečenie"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Komentár"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4973,23 +4799,6 @@ msgstr ""
"Môže byť nepresné. Viď [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11"
"[/a]"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr "Nepodarilo sa pripojiť ku controluser podľa nastavení z konfigurácie."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Server neodpovedá"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(alebo soket lokálneho MySQL servra nie je správne nastavený)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Podrobnosti..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5129,8 +4938,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á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 "
@@ -5861,8 +5670,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6147,6 +5956,48 @@ msgstr "Pohľady"
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Veľkosť nahrávaného súboru prekračuje hodnotu premennej upload_max_filesize "
+"v php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Veľkosť nahrávaného súboru prekračuje hodnotu premennej MAX_FILE_SIZE, ktorá "
+"bola nastavená v HTML formulári."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Súbor bol nahraný len čiastočne."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Chýba adresár pre dočasné súbory."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Chyba pri zápise súboru na disk."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Nahrávanie súboru bolo zastavené rozšírením."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Neznáma chyba pri nahrávaní súboru."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Chyba pri presune nahrávaného súboru, viď [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6166,40 +6017,6 @@ msgstr "výsledok SQL"
msgid "Generated by"
msgstr "Vygenerované"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Nasledujúce tabuľky boli vytvorené alebo zmenené. Teraz možete:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Zobraziť obsah tabuľky kliknuťím na jej názov"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "Zmeniť ľubovolné nastavenia kliknutím na odkaz \"Nastavenia\""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Upraviť štruktúru kliknutím na odkaz \"Štruktúra\""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Prejsť do databázy"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "nastavenia"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Prejsť do tabuľky"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Prejsť na Prejsť na pohľad"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6259,6 +6076,40 @@ msgstr "Názvy stĺpcov"
msgid "This plugin does not support compressed imports!"
msgstr "Tento plug-in nepodporuje import komprimovaných súborov!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Nasledujúce tabuľky boli vytvorené alebo zmenené. Teraz možete:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Zobraziť obsah tabuľky kliknuťím na jej názov"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "Zmeniť ľubovolné nastavenia kliknutím na odkaz \"Nastavenia\""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Upraviť štruktúru kliknutím na odkaz \"Štruktúra\""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Prejsť do databázy"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "nastavenia"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Prejsť do tabuľky"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Prejsť na Prejsť na pohľad"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6281,6 +6132,42 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Nebol definovaný žiadny index!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unikátny"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Zabalené"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Mohutnosť"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primárny kľúč bol zrušený"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Index pre %s bol odstránený"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Indexy %1$s a %2$s vyzerajú rovnaké a jeden z nich môže byť pravdepodobne "
+"odstránený."
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6291,6 +6178,30 @@ msgstr "Žiadny"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Ovplyvnený bol %1$d riadok."
+msgstr[1] "Ovplyvnené boli %1$d riadky."
+msgstr[2] "Ovplyvnených bolo %1$d riadkov."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Bol zmazaný %1$d riadok."
+msgstr[1] "Boli zmazané %1$d riadky."
+msgstr[2] "Bolo zmazaných %1$d riadkov."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Bol vložený %1$d riadok."
+msgstr[1] "Boli vložené %1$d riadky."
+msgstr[2] "Bolo vložených %1$d riadkov."
+
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "Z"
@@ -6530,6 +6441,22 @@ msgstr ""
msgid "This format has no options"
msgstr "Tento formát nemá žiadne nastavenia"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Nepodarilo sa uložiť najnovšíu tabuľku"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Počítať tabuľky"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "There are no recent tables"
+msgstr "Žiadny súbor pre nahrávanie"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "chyba"
@@ -6910,61 +6837,6 @@ msgstr ""
msgid "Target database"
msgstr "Cieľová databáza"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Spustiť SQL príkaz(y) na serveri %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Spustiť SQL dopyt/dopyty na databázu %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Vyčistiť"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Stĺpce"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Pridať tento SQL dopyt do obľúbených"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Dovoliť používať túto položku všetkým používateľom"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Prepísať existujúci príkaz s rovnakým menom"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Neprepisovať tento dopyt z hlavného okna"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Oddeľovač"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Zobraziť tento dopyt znovu "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Iba prezrieť"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Umiestnenie textového súboru"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "upload adresár web serveru"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7027,6 +6899,61 @@ msgstr "Neplatný identifikátor"
msgid "Unknown Punctuation String"
msgstr "Neznámy interpunkčný reťazec"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Spustiť SQL príkaz(y) na serveri %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Spustiť SQL dopyt/dopyty na databázu %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Vyčistiť"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Stĺpce"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Pridať tento SQL dopyt do obľúbených"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Dovoliť používať túto položku všetkým používateľom"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Prepísať existujúci príkaz s rovnakým menom"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Neprepisovať tento dopyt z hlavného okna"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Oddeľovač"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Zobraziť tento dopyt znovu "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Iba prezrieť"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Umiestnenie textového súboru"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "upload adresár web serveru"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7034,8 +6961,51 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%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."
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Pre tento úložný systém nie sú dostupné žiadne podrobnejšie informácie."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "Úložný systém %s je dostupný na tomto MySQL serveri."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "Úložný systém %s bol zakázaný na tomto MySQL serveri."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Tento MySQL server nepodporuje úložný systém %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Chybná databáza"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Chybné meno tabuľky"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Chyba pri premenovaní tabuľky %1$s na %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabuľka %s bola premenovaná na %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
@@ -7156,6 +7126,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Pridať nového používateľa"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Nebola nájdená platná cesta k obrázkom pre vzhľad %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Náhľad nie je dostupný."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "zvoliť"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Predvolený vzhľad %s nebol nájdený!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Vzhľad %s nebol nájdený!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Nebola nájdená platná cesta ku vzhľadu %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7729,8 +7731,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:302
msgid "Save to browser's storage"
@@ -8174,13 +8176,13 @@ msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia."
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ť."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
@@ -10679,8 +10681,8 @@ msgstr "Premenovať pohľad na"
#~ 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"
diff --git a/po/sl.po b/po/sl.po
index 7f0fa589e8..b00af22f9f 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-06-16 22:33+0200\n"
"Last-Translator: Domen \n"
"Language-Team: slovenian \n"
-"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: sl\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
"%100==4 ? 2 : 3);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -48,10 +48,10 @@ msgstr "Iskanje"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Iskanje"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Izvedi"
@@ -132,9 +132,9 @@ msgstr "Pripomba zbirke podatkov: "
msgid "Table comments"
msgstr "Pripomba tabele"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Pripomba tabele"
msgid "Column"
msgstr "Stolpec"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Stolpec"
msgid "Type"
msgstr "Vrsta"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "Povezave z"
msgid "Comments"
msgstr "Pripombe"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "Pripombe"
msgid "No"
msgstr "Ne"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -332,8 +333,8 @@ msgstr "Dodaj omejitve"
msgid "Switch to copied database"
msgstr "Preklopi na kopirano zbirko podatkov"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -499,8 +500,8 @@ msgstr "Poizvedba SQL na zbirki podatkov %s:"
msgid "Submit Query"
msgstr "Izvedi poizvedbo"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -610,7 +611,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Dostop zavrnjen"
@@ -735,8 +736,8 @@ msgstr "Sledenje ni aktivno."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -754,7 +755,7 @@ msgstr "Podvojevanje"
msgid "Sum"
msgstr "Vsota"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s je privzet skladiščni pogon na tem strežniku MySQL."
@@ -803,8 +804,8 @@ msgstr "Pogled za tiskanje"
msgid "Empty"
msgstr "Izprazni"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -877,9 +878,9 @@ msgstr "Posodobljeno"
msgid "Status"
msgstr "Stanje"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -973,8 +974,8 @@ msgstr "Dump je shranjen v datoteko %s."
#: import.php:58
#, 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."
msgstr ""
"Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si "
"%sdokumentacijo%s za načine, kako obiti to omejitev."
@@ -1155,11 +1156,11 @@ msgstr "Odstranjevanje izbranih uporabnikov"
msgid "Close"
msgstr "Zapri"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Uredi"
@@ -1698,229 +1699,12 @@ msgstr "Minuta"
msgid "Second"
msgstr "Sekunda"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Velikost pisave"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Naložena datotek presega napotek upload_max_filesize v php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Naložena datotek presega napotek MAX_FILE_SIZE, ki je bil določen v obrazcu "
-"HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Naložena datoteka je bila naložena samo delno."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Manjka začasna mapa."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Pisanje datoteke na disk je spodletelo."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Nalaganje datoteke je ustavila razširitev."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Neznana napaka pri nalaganju datoteke."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Napaka pri premikanju naložene datoteke, glej [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Ni definiranega indeksa!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeksi"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Edinstven"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Stisnjeno"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinalnost"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Pripomba"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primarni ključ je zavržen"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeks %s je zavržen"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Kaže, da sta indeksa %1$s in %2$s enaka, zato se enega od njiju morda lahko "
-"odstrani."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Zbirke podatkov"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Napaka"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Spremenjena je %1$d vrstica."
-msgstr[1] "Spremenjeni sta %1$d vrstici."
-msgstr[2] "Spremenjene so %1$d vrstice."
-msgstr[3] "Spremenjenih je %1$d vrstic."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Izbrisana je %1$d vrstica."
-msgstr[1] "Izbrisani sta %1$d vrstici."
-msgstr[2] "Izbrisane so %1$d vrstice."
-msgstr[3] "Izbrisanih je %1$d vrstic."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Vstavljena je %1$d vrstica."
-msgstr[1] "Vstavljeni sta %1$d vrstici."
-msgstr[2] "Vstavljene so %1$d vrstice."
-msgstr[3] "Vstavljenih je %1$d vrstic."
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Ne morem shraniti nedavne tabele"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Nedavne tabele"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Ni nobenih nedavnih tabel"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Za ta skladiščni pogon ni na voljo nobenih podrobnejših informacij o stanju."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s je na voljo na tem strežniku MySQL."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s je onemogočeno za ta strežnik MySQL."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Ta strežnik MySQL ne podpira skladiščnega pogona %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Neveljavna zbirka podatkov"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Neveljavno ime tabele"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Napaka pri preimenovanju tabele %1$s v %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabela %s je preimenovana v %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Ne morem shraniti nastavitev uporabniškega vmesnika tabel"
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Za temo %s ni bila najdena veljavna pot slik!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Predogled ni na voljo."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "uporabi"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Privzeta tema %s ni bila najdena!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s ni bila najdena!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Pot teme ni bila najdena za temo %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Povezava ni mogoča: neveljavne nastavitve."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Dobrodošli v %s"
@@ -1928,8 +1712,8 @@ msgstr "Dobrodošli v %s"
#: libraries/auth/config.auth.lib.php:106
#, 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."
@@ -1945,57 +1729,57 @@ msgstr ""
"povezavo. Preverite, ali gostitelj, uporabniško ime in geslo v datoteki "
"config.inc.php ustrezajo podatkom administratorja strežnika MySQL."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Prijava"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Dokumentacija phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "Vnesete lahko ime gostitelja/IP-naslov in vrata ločena s presledkom."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Strežnik:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Uporabniško ime:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Geslo:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Izbira strežnika"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Če želite še naprej uporabljati program, morate omogočiti piškotke."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"Prijava brez gesla je prepovedana s konfiguracijo (glej AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Brez aktivnosti v zadnjih %s sekundah; prosimo, prijavite se znova"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Ne morem se prijaviti v strežnik MySQL"
@@ -2034,6 +1818,14 @@ msgstr "Napaka PBMS"
msgid "PBMS connection failed:"
msgstr "Povezava s PBMS je spodletela:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Napaka"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "Pridobivanje informacij BLOB PBMS je spodletelo:"
@@ -2086,6 +1878,11 @@ msgstr "Tabele"
msgid "Data"
msgstr "Podatki"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeksi"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2115,13 +1912,13 @@ msgstr "Preveri privilegije"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Ne morem shraniti konfiguracije"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2368,77 +2165,9 @@ msgstr "Nobene datoteke ni za naložiti"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Oboje"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Nikjer"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Levo"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Desno"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Odprto"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Zaprto"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "struktura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "podatki"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "struktura in podatki"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Hitro - prikaži kar najmanj možnosti za konfiguriranje"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Po meri - prikaži vse mogoče možnosti za konfiguriranje"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Po meri - kot zgoraj, vendar brez izbire hitro/po meri"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "popolne poizvedbe insert"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "razširjene poizvedbe insert"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "oboje zgoraj"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "nič od zgoraj"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Velikost pisave"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3095,6 +2824,12 @@ msgstr "Nastavi mape za uvoz in izvoz ter možnosti stiskanja"
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Zbirke podatkov"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Možnosti prikaza zbirk podatkov"
@@ -4713,6 +4448,78 @@ msgstr "Počisti geslo krmilnega uporabnika phpMyAdmin med uporabo pmadb"
msgid "Incorrect IP address: %s"
msgstr "Napačen IP-naslov: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Oboje"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Nikjer"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Levo"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Desno"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Odprto"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Zaprto"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "struktura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "podatki"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "struktura in podatki"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Hitro - prikaži kar najmanj možnosti za konfiguriranje"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Po meri - prikaži vse mogoče možnosti za konfiguriranje"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Po meri - kot zgoraj, vendar brez izbire hitro/po meri"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "popolne poizvedbe insert"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "razširjene poizvedbe insert"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "oboje zgoraj"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "nič od zgoraj"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4783,6 +4590,25 @@ msgstr ""
msgid "Add a new Event"
msgstr "Dodaj nov strežnik"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Povezava za controluserja, kot je določena v vaši konfiguraciji, je "
+"spodletela."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Strežnik se ne odziva"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(ali pa lokalna vtičnica strežnika MySQL ni pravilno konfigurirana)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Podrobnosti ..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4857,9 +4683,9 @@ msgstr "Dolžina/Vrednosti"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4918,6 +4744,11 @@ msgstr "Varnost"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Pripomba"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4984,25 +4815,6 @@ msgstr ""
"Morda je približno. Glej [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Povezava za controluserja, kot je določena v vaši konfiguraciji, je "
-"spodletela."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Strežnik se ne odziva"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(ali pa lokalna vtičnica strežnika MySQL ni pravilno konfigurirana)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Podrobnosti ..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5142,8 +4954,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. "
@@ -5920,8 +5732,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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."
@@ -6230,6 +6042,46 @@ msgstr "Pogledi"
msgid "Export contents"
msgstr "Izvozi vsebine"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "Naložena datotek presega napotek upload_max_filesize v php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Naložena datotek presega napotek MAX_FILE_SIZE, ki je bil določen v obrazcu "
+"HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Naložena datoteka je bila naložena samo delno."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Manjka začasna mapa."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Pisanje datoteke na disk je spodletelo."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Nalaganje datoteke je ustavila razširitev."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Neznana napaka pri nalaganju datoteke."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Napaka pri premikanju naložene datoteke, glej [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6249,43 +6101,6 @@ msgstr "Rezultat SQL"
msgid "Generated by"
msgstr "Ustvaril"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-"Naslednje strukture so bile ali ustvarjene ali spremenjene: Tukaj lahko:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Oglejte si vsebino strukture s klikom na njeno ime"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Spremenite katero koli njeno nastavitev s klikom na pripadajočo povezavo "
-"\"Možnosti\""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Uredite njeno strukturo s sledenjem povezavi \"Struktura\""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Pojdi v zbirko podatkov"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "nastavitve"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Pojdi v tabelo"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Pojdi na pogled"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6352,6 +6167,43 @@ msgstr "Imena stolpcev"
msgid "This plugin does not support compressed imports!"
msgstr "Ta vtičnik ne podpira stisnjenih uvozov!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+"Naslednje strukture so bile ali ustvarjene ali spremenjene: Tukaj lahko:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Oglejte si vsebino strukture s klikom na njeno ime"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Spremenite katero koli njeno nastavitev s klikom na pripadajočo povezavo "
+"\"Možnosti\""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Uredite njeno strukturo s sledenjem povezavi \"Struktura\""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Pojdi v zbirko podatkov"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "nastavitve"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Pojdi v tabelo"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Pojdi na pogled"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6377,6 +6229,42 @@ msgstr ""
"Določena datoteka XML je ali skažena ali nepopolna. Prosimo, odpravite "
"težave in poskusite znova."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Ni definiranega indeksa!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Edinstven"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Stisnjeno"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinalnost"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primarni ključ je zavržen"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeks %s je zavržen"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Kaže, da sta indeksa %1$s in %2$s enaka, zato se enega od njiju morda lahko "
+"odstrani."
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6387,6 +6275,33 @@ msgstr "Nobeno"
msgid "Convert to Kana"
msgstr "Pretvori v kano"
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Spremenjena je %1$d vrstica."
+msgstr[1] "Spremenjeni sta %1$d vrstici."
+msgstr[2] "Spremenjene so %1$d vrstice."
+msgstr[3] "Spremenjenih je %1$d vrstic."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Izbrisana je %1$d vrstica."
+msgstr[1] "Izbrisani sta %1$d vrstici."
+msgstr[2] "Izbrisane so %1$d vrstice."
+msgstr[3] "Izbrisanih je %1$d vrstic."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Vstavljena je %1$d vrstica."
+msgstr[1] "Vstavljeni sta %1$d vrstici."
+msgstr[2] "Vstavljene so %1$d vrstice."
+msgstr[3] "Vstavljenih je %1$d vrstic."
+
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "Od"
@@ -6625,6 +6540,18 @@ msgstr "Osveži okvir navigacije"
msgid "This format has no options"
msgstr "Za to obliko ni možnosti"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Ne morem shraniti nedavne tabele"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Nedavne tabele"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Ni nobenih nedavnih tabel"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "ni v redu"
@@ -7007,61 +6934,6 @@ msgstr "Razlika"
msgid "Target database"
msgstr "Ciljna zbirka podatkov"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Izvedi poizvedbo/poizvedbe SQL na strežniku %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Izvedi poizvedbo/poizvedbe SQL na podatkovni zbirki %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Počisti"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Stolpci"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Označi to poizvedbo SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Dovoli dostop do zaznamka vsem uporabnikom"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Zamenjaj obstoječ zaznamek z istim imenom"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Ne prepiši te poizvedbe od zunaj"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Ločilo"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Ponovno pokaži poizvedbo v tem oknu "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Samo pogled"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Mesto datoteke z besedilom"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "imenik za nalaganje datotek"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7124,6 +6996,61 @@ msgstr "Neveljavni identifikator"
msgid "Unknown Punctuation String"
msgstr "Neznan niz ločil"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Izvedi poizvedbo/poizvedbe SQL na strežniku %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Izvedi poizvedbo/poizvedbe SQL na podatkovni zbirki %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Počisti"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Stolpci"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Označi to poizvedbo SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Dovoli dostop do zaznamka vsem uporabnikom"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Zamenjaj obstoječ zaznamek z istim imenom"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Ne prepiši te poizvedbe od zunaj"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Ločilo"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Ponovno pokaži poizvedbo v tem oknu "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Samo pogled"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Mesto datoteke z besedilom"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "imenik za nalaganje datotek"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7133,6 +7060,49 @@ msgstr ""
"Ne morem inicializirati preverjevalnika SQL. Prosimo, preverite, če so "
"nameščene vse razširitve PHP, kot je navedeno v %sdokumenaciji%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Za ta skladiščni pogon ni na voljo nobenih podrobnejših informacij o stanju."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s je na voljo na tem strežniku MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s je onemogočeno za ta strežnik MySQL."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Ta strežnik MySQL ne podpira skladiščnega pogona %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Neveljavna zbirka podatkov"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Neveljavno ime tabele"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Napaka pri preimenovanju tabele %1$s v %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabela %s je preimenovana v %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Ne morem shraniti nastavitev uporabniškega vmesnika tabel"
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabela je prazna!"
@@ -7251,6 +7221,38 @@ msgstr "Definicija PARTITION"
msgid "+ Add a new value"
msgstr "+ Dodaj novo vrednost"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Za temo %s ni bila najdena veljavna pot slik!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Predogled ni na voljo."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "uporabi"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Privzeta tema %s ni bila najdena!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s ni bila najdena!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Pot teme ni bila najdena za temo %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8293,8 +8295,8 @@ msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki."
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 "
diff --git a/po/sq.po b/po/sq.po
index d5acccbea5..b994b0a14c 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-07-21 14:51+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: albanian \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: Pootle 2.0.1\n"
@@ -48,10 +48,10 @@ msgstr "Kërko"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Kërko"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Zbato"
@@ -130,9 +130,9 @@ msgstr "Komenti për databazën: "
msgid "Table comments"
msgstr "Komentet e tabelës"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Komentet e tabelës"
msgid "Column"
msgstr "Emrat e kollonave"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Emrat e kollonave"
msgid "Type"
msgstr "Lloji"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "Lidhje me"
msgid "Comments"
msgstr "Komente"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "Komente"
msgid "No"
msgstr " Jo "
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -335,8 +336,8 @@ msgstr "Shto kushte"
msgid "Switch to copied database"
msgstr "Kalo tek databaza e kopjuar"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -510,8 +511,8 @@ msgstr "Kërkesë SQL tek databaza %s:"
msgid "Submit Query"
msgstr "Dërgo Query"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -612,7 +613,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Ndalohet hyrja"
@@ -740,8 +741,8 @@ msgstr "Gjurmimi nuk është aktiv."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -760,7 +761,7 @@ msgstr "Replikimi"
msgid "Sum"
msgstr "Sum"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
@@ -809,8 +810,8 @@ msgstr "Shfaq për printim"
msgid "Empty"
msgstr "Zbraz"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -889,9 +890,9 @@ msgstr ""
msgid "Status"
msgstr "Gjendja"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -989,8 +990,8 @@ msgstr "Dump u ruajt tek file %s."
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1170,11 +1171,11 @@ msgstr "Heq përdoruesit e zgjedhur"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ndrysho"
@@ -1798,220 +1799,12 @@ msgstr "në përdorim"
msgid "Second"
msgstr "në sekondë"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr ""
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Asnjë tregues i përcaktuar!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Tregues"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "I vetëm"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr ""
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Komente"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Kyçi primar u eleminua"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Treguesi %s u eleminua"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Databazat"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Gabim"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Nuk ka rreshta të zgjedhur"
-msgstr[1] "Nuk ka rreshta të zgjedhur"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Nuk ka rreshta të zgjedhur"
-msgstr[1] "Nuk ka rreshta të zgjedhur"
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Asnjë tabelë"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabela %s u riemërtua %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "merre"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "E pamundur lidhja: rregullime të pavlefshme."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Mirësevini tek %s"
@@ -2019,8 +1812,8 @@ msgstr "Mirësevini tek %s"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
@@ -2035,56 +1828,56 @@ msgstr ""
"config.inc.php dhe sigurohu që korrispondojnë me informacionet që ju ka "
"dhënë administratori i serverit MySQL."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Hyrja"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Dokumente të phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Serveri"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Emri i përdoruesit:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Fjalëkalimi:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Zgjedhja e serverit"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Nga kjo pikë e tutje, cookies duhet të jenë të aktivuara."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "E pamundur kryerja e login tek server-i MySQL"
@@ -2125,6 +1918,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Vendosja e lidhjes MySQL"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Gabim"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2177,6 +1978,11 @@ msgstr "Tabela"
msgid "Data"
msgstr "Të dhëna"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Tregues"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2207,13 +2013,13 @@ msgid "Check Privileges"
msgstr "Kontrollo të drejtat"
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr ""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2459,85 +2265,8 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Thonjëza të pambyllura"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Struktura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Struktura dhe të dhënat"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Të shtuarat komplet"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Të shtuara të zgjeruara"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
+#: libraries/Config.class.php:1190
+msgid "Font size"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -3208,6 +2937,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Databazat"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4738,6 +4473,87 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Thonjëza të pambyllura"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Struktura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Struktura dhe të dhënat"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Të shtuarat komplet"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Të shtuara të zgjeruara"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4805,6 +4621,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "Shto një përdorues të ri"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Serveri nuk përgjigjet"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4877,9 +4710,9 @@ msgstr "Gjatësia/Set*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4937,6 +4770,12 @@ msgstr "Lloji i query"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Komente"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4996,23 +4835,6 @@ msgid ""
"3.11[/a]"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Serveri nuk përgjigjet"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5174,8 +4996,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:275
@@ -5905,8 +5727,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6222,6 +6044,42 @@ msgstr "Paraqitje"
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6239,41 +6097,6 @@ msgstr "Rezultati SQL"
msgid "Generated by"
msgstr "Gjeneruar nga"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Asnjë databazë"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6335,6 +6158,41 @@ msgstr "Emrat e kollonave"
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Asnjë databazë"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6357,6 +6215,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Asnjë tregues i përcaktuar!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "I vetëm"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr ""
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Kyçi primar u eleminua"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Treguesi %s u eleminua"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6369,6 +6261,29 @@ msgstr "Asnjë lloj"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Nuk ka rreshta të zgjedhur"
+msgstr[1] "Nuk ka rreshta të zgjedhur"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Nuk ka rreshta të zgjedhur"
+msgstr[1] "Nuk ka rreshta të zgjedhur"
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6612,6 +6527,19 @@ msgstr ""
msgid "This format has no options"
msgstr "Ky format nuk ka opcione"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Asnjë tabelë"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "jo OK"
@@ -7004,64 +6932,6 @@ msgstr ""
msgid "Target database"
msgstr "Kërko në databazë"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Zbato query SQL tek databaza %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Zbato query SQL tek databaza %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Kalendari"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Emrat e kollonave"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Shtoja të preferuarve këtë query SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Mos e mbishkruaj këtë query nga jashtë dritares"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Tregoje përsëri këtë query"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Shfaq vetëm"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Pozicioni i file"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "directory e upload të server-it web"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7127,6 +6997,64 @@ msgstr "Identifikues i pavlefshëm"
msgid "Unknown Punctuation String"
msgstr "Stringë Punctuation e panjohur"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Zbato query SQL tek databaza %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Zbato query SQL tek databaza %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Kalendari"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Emrat e kollonave"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Shtoja të preferuarve këtë query SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Mos e mbishkruaj këtë query nga jashtë dritares"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Tregoje përsëri këtë query"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Shfaq vetëm"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Pozicioni i file"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "directory e upload të server-it web"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7136,6 +7064,48 @@ msgstr ""
"Miratuesi SQL nuk arrin të niset. Ju lutem kontrolloni instalimin e "
"prapashtesave të duhura php ashtu si përshkruhet tek %sdokumentimi%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabela %s u riemërtua %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7265,6 +7235,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Shto një përdorues të ri"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "merre"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8361,8 +8363,8 @@ msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit."
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 lexon të drejtat e përdoruesve direkt nga tabela e "
"privilegjeve të MySQL. Përmbajtja e kësaj tabele mund të ndryshojë prej të "
@@ -10649,8 +10651,8 @@ msgstr "Riemërto tabelën në"
#~ "Query statistics: Since its startup, %s queries have been sent to "
#~ "the server."
#~ msgstr ""
-#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar "
-#~ "%s queries."
+#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar %"
+#~ "s queries."
#, fuzzy
#~| msgid "The privileges were reloaded successfully."
diff --git a/po/sr.po b/po/sr.po
index 1bf2f13ec9..de9e37f432 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-04-06 18:43+0200\n"
"Last-Translator: \n"
"Language-Team: serbian_cyrillic \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: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -49,10 +49,10 @@ msgstr "Претраживање"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Претраживање"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Крени"
@@ -131,9 +131,9 @@ msgstr "Коментар базе:"
msgid "Table comments"
msgstr "Коментари табеле"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "Коментари табеле"
msgid "Column"
msgstr "Колона"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "Колона"
msgid "Type"
msgstr "Тип"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,12 +197,13 @@ msgstr "Везе ка"
msgid "Comments"
msgstr "Коментари"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -213,17 +214,17 @@ msgstr "Коментари"
msgid "No"
msgstr "Не"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -331,8 +332,8 @@ msgstr "Додај ограничења"
msgid "Switch to copied database"
msgstr "Пребаци се на копирану базу"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -505,8 +506,8 @@ msgstr "SQL упит на бази %s:"
msgid "Submit Query"
msgstr "Изврши SQL упит"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -613,7 +614,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Приступ одбијен"
@@ -743,8 +744,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -762,7 +763,7 @@ msgstr "Репликација"
msgid "Sum"
msgstr "Укупно"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s је подразумевани погон складиштења на овом MySQL серверу."
@@ -811,8 +812,8 @@ msgstr "За штампу"
msgid "Empty"
msgstr "Испразни"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -893,9 +894,9 @@ msgstr ""
msgid "Status"
msgstr "Статус"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -994,11 +995,11 @@ msgstr "Садржај базе је сачуван у датотеку %s."
#: import.php:58
#, 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."
msgstr ""
-"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте "
-"%sдокументацију%s за начине превазилажења овог ограничења."
+"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %"
+"sдокументацију%s за начине превазилажења овог ограничења."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1187,11 +1188,11 @@ msgstr "Уклони изабране кориснике"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Промени"
@@ -1817,227 +1818,12 @@ msgstr "се користи"
msgid "Second"
msgstr "у секунди"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Величина фонта"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Послата датотека превазилази вредност директиве upload_max_filesize у php."
-"ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Послата датотека превазилази вредност директиве MAX_FILE_SIZE која је "
-"наведена у HTML форми."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Послата датотека је само делимично примљена."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Недостаје привремени директоријум."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Неуспело уписивање датотеке на диск."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Пријем датотеке заустављен због екстензије."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Непозната грешка при слању датотеке."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Грешка у премештању примљене датотеке, погледајте FAQ 1.11"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Кључ није дефинисан!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Кључеви"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Јединствени"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Кардиналност"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Коментари"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Примарни кључ је обрисан"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Кључ %s је обрисан"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Базе"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Грешка"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Нема одабраних редова"
-msgstr[1] "Нема одабраних редова"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Нема одабраних редова"
-msgstr[1] "Нема одабраних редова"
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Нема табела"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-msgid "There are no recent tables"
-msgstr "Провери табелу"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Нема детаљнијих информација о статусу за овај погон складиштења."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s је доступан на овом MySQL серверу."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s је онемогућен на овом MySQL серверу."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Овај MySQL сервер не подржава %s погон складиштења."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Неисправна база података"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Неисправан назив табеле"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Грешка при преименовању табеле %1$s у %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Табели %s промењено име у %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Нема исправне путање до слика за тему %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Преглед не постоји."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "преузми"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Није пронађена подразумевана тема %s!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Није пронађена тема %s!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Није пронађена путања до теме за тему %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Не могу да се повежем: неисправна подешавања."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Добродошли на %s"
@@ -2045,8 +1831,8 @@ msgstr "Добродошли на %s"
#: libraries/auth/config.auth.lib.php:106
#, 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 да бисте је направили."
@@ -2063,56 +1849,56 @@ msgstr ""
"php и уверите се да одговарају подацима које сте добили од администратора "
"MySQL сервера."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Пријављивање"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin документација"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Сервер"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Корисничко име:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Лозинка:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Избор сервера"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Колачићи (Cookies) морају у овом случају бити активни."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Није било активности %s или више секунди, молимо пријавите се поново"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Не могу да се пријавим на MySQL сервер"
@@ -2153,6 +1939,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Сортирање за MySQL везу"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Грешка"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2205,6 +1999,11 @@ msgstr "Табеле"
msgid "Data"
msgstr "Подаци"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Кључеви"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2237,13 +2036,13 @@ msgstr "Провери привилегије"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2493,86 +2292,9 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Наводник није затворен"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Структура"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Структура и подаци"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Комплетан INSERT (са именима поља)"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Проширени INSERT"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Величина фонта"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3246,6 +2968,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Базе"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4800,6 +4528,87 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Наводник није затворен"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Структура"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Структура и подаци"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Комплетан INSERT (са именима поља)"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Проширени INSERT"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4867,6 +4676,25 @@ msgstr ""
msgid "Add a new Event"
msgstr "Додај новог корисника"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Конекција за controluser-а, онако како је дефинисана у вашој конфигурацији, "
+"није успела."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Сервер не одговара"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(или прикључак локалног MySQL сервера није исправно подешен)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4939,9 +4767,9 @@ msgstr "Дужина/Вредност*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -5000,6 +4828,12 @@ msgstr "Врста упита"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Коментари"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5063,25 +4897,6 @@ msgid ""
"3.11[/a]"
msgstr "Може бити приближно. Видите FAQ 3.11"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Конекција за controluser-а, онако како је дефинисана у вашој конфигурацији, "
-"није успела."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Сервер не одговара"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(или прикључак локалног MySQL сервера није исправно подешен)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5251,8 +5066,8 @@ msgstr ""
#| "happen: %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, тако да можете да "
"користите стрингове за форматирање времена. Такође ће се десити и следеће "
@@ -6019,8 +5834,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6338,6 +6153,46 @@ msgstr "Поглед"
msgid "Export contents"
msgstr "Тип извоза"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Послата датотека превазилази вредност директиве upload_max_filesize у php."
+"ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Послата датотека превазилази вредност директиве MAX_FILE_SIZE која је "
+"наведена у HTML форми."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Послата датотека је само делимично примљена."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Недостаје привремени директоријум."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Неуспело уписивање датотеке на диск."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Пријем датотеке заустављен због екстензије."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Непозната грешка при слању датотеке."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Грешка у премештању примљене датотеке, погледајте FAQ 1.11"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6355,42 +6210,6 @@ msgstr "SQL резултат"
msgid "Generated by"
msgstr "Генерисао"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "База не постоји"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "База не постоји"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6453,6 +6272,42 @@ msgstr "Имена колона"
msgid "This plugin does not support compressed imports!"
msgstr "Овај додатак не подржава компресоване увозе!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "База не постоји"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "База не постоји"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6477,6 +6332,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Кључ није дефинисан!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Јединствени"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Кардиналност"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Примарни кључ је обрисан"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Кључ %s је обрисан"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6489,6 +6378,29 @@ msgstr "нема"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Нема одабраних редова"
+msgstr[1] "Нема одабраних редова"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Нема одабраних редова"
+msgstr[1] "Нема одабраних редова"
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6733,6 +6645,22 @@ msgstr ""
msgid "This format has no options"
msgstr "Не постоје опције за овај формат"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Нема табела"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+msgid "There are no recent tables"
+msgstr "Провери табелу"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "није у реду"
@@ -7125,64 +7053,6 @@ msgstr ""
msgid "Target database"
msgstr "Претраживање базе"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Изврши SQL упит(е) на серверу %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Изврши SQL упит(е) на бази %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Календар"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Имена колона"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Запамти SQL-упит"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Замени постојеће запамћене упите истог имена"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Не преписуј овај упит изван прозора"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Граничник"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Прикажи поново овај упит"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Види само"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Локација текстуалне датотеке"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "директоријум за слање веб сервера "
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7245,6 +7115,64 @@ msgstr "Неисправан иГ¤ентификатор"
msgid "Unknown Punctuation String"
msgstr "Непознат стринг интерпункције"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Изврши SQL упит(е) на серверу %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Изврши SQL упит(е) на бази %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Календар"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Имена колона"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Запамти SQL-упит"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Замени постојеће запамћене упите истог имена"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Не преписуј овај упит изван прозора"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Граничник"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Прикажи поново овај упит"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Види само"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Локација текстуалне датотеке"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "директоријум за слање веб сервера "
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7254,6 +7182,48 @@ msgstr ""
"SQL валидатор није могао да буде покренут. Проверите да ли су инсталиране "
"неопходне PHP екстензије описане у %sдокументацији%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Нема детаљнијих информација о статусу за овај погон складиштења."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s је доступан на овом MySQL серверу."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s је онемогућен на овом MySQL серверу."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Овај MySQL сервер не подржава %s погон складиштења."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Неисправна база података"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Неисправан назив табеле"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Грешка при преименовању табеле %1$s у %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Табели %s промењено име у %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Табела је изгледа празна!"
@@ -7383,6 +7353,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Додај новог корисника"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Нема исправне путање до слика за тему %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Преглед не постоји."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "преузми"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Није пронађена подразумевана тема %s!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Није пронађена тема %s!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Није пронађена путања до теме за тему %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8498,8 +8500,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 табела "
"привилегија. Садржај ове табеле може се разликовати од привилегија које "
diff --git a/po/sr@latin.po b/po/sr@latin.po
index e62fe5a3f0..524304cf87 100644
--- a/po/sr@latin.po
+++ b/po/sr@latin.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-12-02 14:49+0200\n"
"Last-Translator: Sasa Kostic \n"
"Language-Team: serbian_latin \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: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -49,10 +49,10 @@ msgstr "Pretraživanje"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Pretraživanje"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Kreni"
@@ -133,9 +133,9 @@ msgstr "Komentar baze:"
msgid "Table comments"
msgstr "Komentari tabele"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "Komentari tabele"
msgid "Column"
msgstr "Kolona"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "Kolona"
msgid "Type"
msgstr "Tip"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,12 +199,13 @@ msgstr "Veze ka"
msgid "Comments"
msgstr "Komentari"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +216,17 @@ msgstr "Komentari"
msgid "No"
msgstr "Ne"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -333,8 +334,8 @@ msgstr "Dodaj ograničenja"
msgid "Switch to copied database"
msgstr "Prebaci se na kopiranu bazu"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -502,8 +503,8 @@ msgstr "SQL upit na bazi %s:"
msgid "Submit Query"
msgstr "Izvrši SQL upit"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -610,7 +611,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Pristup odbijen"
@@ -737,8 +738,8 @@ msgstr "Praćenje nije aktivno."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -756,7 +757,7 @@ msgstr "Replikacija"
msgid "Sum"
msgstr "Ukupno"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s je podrazumevani pogon skladištenja na ovom MySQL serveru."
@@ -805,8 +806,8 @@ msgstr "Za štampu"
msgid "Empty"
msgstr "Isprazni"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -887,9 +888,9 @@ msgstr ""
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -988,11 +989,11 @@ msgstr "Sadržaj baze je sačuvan u datoteku %s."
#: import.php:58
#, 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."
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:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1181,11 +1182,11 @@ msgstr "Ukloni izabrane korisnike"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Promeni"
@@ -1811,227 +1812,12 @@ msgstr "se koristi"
msgid "Second"
msgstr "u sekundi"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Veličina fonta"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Poslata datoteka prevazilazi vrednost direktive upload_max_filesize u php."
-"ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Poslata datoteka prevazilazi vrednost direktive MAX_FILE_SIZE koja je "
-"navedena u HTML formi."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Poslata datoteka je samo delimično primljena."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Nedostaje privremeni direktorijum."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Neuspelo upisivanje datoteke na disk."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Prijem datoteke zaustavljen zbog ekstenzije."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Nepoznata greška pri slanju datoteke."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Greška u premeštanju primljene datoteke, pogledajte FAQ 1.11"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Ključ nije definisan!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Ključevi"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Jedinstveni"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinalnost"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Komentari"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primarni ključ je obrisan"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Ključ %s je obrisan"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Baze"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Greška"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Nema odabranih redova"
-msgstr[1] "Nema odabranih redova"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Nema odabranih redova"
-msgstr[1] "Nema odabranih redova"
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Nema tabela"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-msgid "There are no recent tables"
-msgstr "Proveri tabelu"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Nema detaljnijih informacija o statusu za ovaj pogon skladištenja."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s je dostupan na ovom MySQL serveru."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s je onemogućen na ovom MySQL serveru."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Ovaj MySQL server ne podržava %s pogon skladištenja."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Neispravna baza podataka"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Neispravan naziv tabele"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Greška pri preimenovanju tabele %1$s u %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabeli %s promenjeno ime u %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Nema ispravne putanje do slika za temu %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Pregled ne postoji."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "preuzmi"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Nije pronađena podrazumevana tema %s!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Nije pronađena tema %s!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Nije pronađena putanja do teme za temu %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Ne mogu da se povežem: neispravna podešavanja."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Dobrodošli na %s"
@@ -2039,8 +1825,8 @@ msgstr "Dobrodošli na %s"
#: libraries/auth/config.auth.lib.php:106
#, 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."
@@ -2057,56 +1843,56 @@ msgstr ""
"php i uverite se da odgovaraju podacima koje ste dobili od administratora "
"MySQL servera."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Prijavljivanje"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin dokumentacija"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Server"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Korisničko ime:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Lozinka:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Izbor servera"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivni."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Nije bilo aktivnosti %s ili više sekundi, molimo prijavite se ponovo"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Ne mogu da se prijavim na MySQL server"
@@ -2147,6 +1933,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Sortiranje za MySQL vezu"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Greška"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2199,6 +1993,11 @@ msgstr "Tabele"
msgid "Data"
msgstr "Podaci"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Ključevi"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2231,13 +2030,13 @@ msgstr "Proveri privilegije"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2487,86 +2286,9 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Navodnik nije zatvoren"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Struktura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Struktura i podaci"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Kompletan INSERT (sa imenima polja)"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Prošireni INSERT"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Veličina fonta"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3241,6 +2963,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Baze"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4793,6 +4521,87 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Navodnik nije zatvoren"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Struktura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Struktura i podaci"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Kompletan INSERT (sa imenima polja)"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Prošireni INSERT"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4860,6 +4669,25 @@ msgstr ""
msgid "Add a new Event"
msgstr "Dodaj novog korisnika"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Konekcija za controluser-a, onako kako je definisana u vašoj konfiguraciji, "
+"nije uspela."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Server ne odgovara"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(ili priključak lokalnog MySQL servera nije ispravno podešen)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4932,9 +4760,9 @@ msgstr "Dužina/Vrednost*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4991,6 +4819,12 @@ msgstr "Vrsta upita"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Komentari"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5054,25 +4888,6 @@ msgid ""
"3.11[/a]"
msgstr "Može biti približno. Vidite FAQ 3.11"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Konekcija za controluser-a, onako kako je definisana u vašoj konfiguraciji, "
-"nije uspela."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Server ne odgovara"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(ili priključak lokalnog MySQL servera nije ispravno podešen)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5242,8 +5057,8 @@ msgstr ""
#| "happen: %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 ""
"Ova vrednost se tumači korišćenjem %1$sstrftime%2$s, tako da možete da "
"koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće "
@@ -6010,8 +5825,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6325,6 +6140,46 @@ msgstr "Pogled"
msgid "Export contents"
msgstr "Tip izvoza"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Poslata datoteka prevazilazi vrednost direktive upload_max_filesize u php."
+"ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Poslata datoteka prevazilazi vrednost direktive MAX_FILE_SIZE koja je "
+"navedena u HTML formi."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Poslata datoteka je samo delimično primljena."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Nedostaje privremeni direktorijum."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Neuspelo upisivanje datoteke na disk."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Prijem datoteke zaustavljen zbog ekstenzije."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Nepoznata greška pri slanju datoteke."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Greška u premeštanju primljene datoteke, pogledajte FAQ 1.11"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6342,42 +6197,6 @@ msgstr "SQL rezultat"
msgid "Generated by"
msgstr "Generisao"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Baza ne postoji"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "Baza ne postoji"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6440,6 +6259,42 @@ msgstr "Imena kolona"
msgid "This plugin does not support compressed imports!"
msgstr "Ovaj dodatak ne podržava kompresovane uvoze!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Baza ne postoji"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "Baza ne postoji"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6464,6 +6319,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Ključ nije definisan!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Jedinstveni"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinalnost"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primarni ključ je obrisan"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Ključ %s je obrisan"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6476,6 +6365,29 @@ msgstr "nema"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Nema odabranih redova"
+msgstr[1] "Nema odabranih redova"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Nema odabranih redova"
+msgstr[1] "Nema odabranih redova"
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6718,6 +6630,22 @@ msgstr ""
msgid "This format has no options"
msgstr "Ne postoje opcije za ovaj format"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Nema tabela"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+msgid "There are no recent tables"
+msgstr "Proveri tabelu"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "nije u redu"
@@ -7110,64 +7038,6 @@ msgstr ""
msgid "Target database"
msgstr "Pretraživanje baze"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Izvrši SQL upit(e) na serveru %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Izvrši SQL upit(e) na bazi %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Kalendar"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Imena kolona"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Zapamti SQL-upit"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Zameni postojeće zapamćene upite istog imena"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Ne prepisuj ovaj upit izvan prozora"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Graničnik"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Prikaži ponovo ovaj upit"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Vidi samo"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Lokacija tekstualne datoteke"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "direktorijum za slanje veb servera "
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7230,6 +7100,64 @@ msgstr "Neispravan iG¤entifikator"
msgid "Unknown Punctuation String"
msgstr "Nepoznat string interpunkcije"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Izvrši SQL upit(e) na serveru %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Izvrši SQL upit(e) na bazi %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Kalendar"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Imena kolona"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Zapamti SQL-upit"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Zameni postojeće zapamćene upite istog imena"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Ne prepisuj ovaj upit izvan prozora"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Graničnik"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Prikaži ponovo ovaj upit"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Vidi samo"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Lokacija tekstualne datoteke"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "direktorijum za slanje veb servera "
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7239,6 +7167,48 @@ msgstr ""
"SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane "
"neophodne PHP ekstenzije opisane u %sdokumentaciji%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Nema detaljnijih informacija o statusu za ovaj pogon skladištenja."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s je dostupan na ovom MySQL serveru."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s je onemogućen na ovom MySQL serveru."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Ovaj MySQL server ne podržava %s pogon skladištenja."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Neispravna baza podataka"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Neispravan naziv tabele"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Greška pri preimenovanju tabele %1$s u %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabeli %s promenjeno ime u %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabela je izgleda prazna!"
@@ -7368,6 +7338,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Dodaj novog korisnika"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Nema ispravne putanje do slika za temu %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Pregled ne postoji."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "preuzmi"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Nije pronađena podrazumevana tema %s!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Nije pronađena tema %s!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Nije pronađena putanja do teme za temu %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8485,8 +8487,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici."
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 "
diff --git a/po/sv.po b/po/sv.po
index 6d92608b0a..4bc8e60fcb 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-06-16 00:11+0200\n"
"Last-Translator: \n"
"Language-Team: swedish \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: Pootle 2.0.5\n"
@@ -48,10 +48,10 @@ msgstr "Sök"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Sök"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Kör"
@@ -132,9 +132,9 @@ msgstr "Databaskommentar: "
msgid "Table comments"
msgstr "Tabellkommentarer"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Tabellkommentarer"
msgid "Column"
msgstr "Kolumn"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Kolumn"
msgid "Type"
msgstr "Typ"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "Länkar till"
msgid "Comments"
msgstr "Kommentarer"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "Kommentarer"
msgid "No"
msgstr "Nej"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -332,8 +333,8 @@ msgstr "Lägg till restriktioner"
msgid "Switch to copied database"
msgstr "Byt till kopierad databas"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -496,8 +497,8 @@ msgstr "SQL-fråga i databas %s:"
msgid "Submit Query"
msgstr "Kör fråga"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -605,7 +606,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Åtkomst nekad"
@@ -726,8 +727,8 @@ msgstr "Spårning är inte aktiv."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -745,7 +746,7 @@ msgstr "Replikering"
msgid "Sum"
msgstr "Summa"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s är standardlagringsmotorn på denna MySQL-server."
@@ -794,8 +795,8 @@ msgstr "Utskriftsvänlig visning"
msgid "Empty"
msgstr "Töm"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -868,9 +869,9 @@ msgstr "Uppdaterad"
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -964,8 +965,8 @@ msgstr "SQL-satserna har sparats till filen %s."
#: import.php:58
#, 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."
msgstr ""
"Du försökte förmodligen ladda upp en för stor fil. Se %sdokumentationen%s "
"för att gå runt denna begränsning."
@@ -1143,11 +1144,11 @@ msgstr "Tar bort markerade användare"
msgid "Close"
msgstr "Stäng"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ändra"
@@ -1687,223 +1688,12 @@ msgstr "Minuter"
msgid "Second"
msgstr "Sekunder"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Teckenstorlek"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Den uppladdade filen överskrider direktivet upload_max_filesize i php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Den uppladdade filen överskrider direktivet MAX_FILE_SIZE som specificerades "
-"i HTML-formuläret."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Den uppladdade filen blev endast delvis uppladdad."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Saknar en temporär katalog."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Misslyckades att skriva fil till disk."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Filuppladdning stoppades av tillägg."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Okänt fel i filuppladdning."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Fel vid flytt av uppladdad fil, se FAQ 1.11"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Inga index är definierade!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Index"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unik"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Packad"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinalitet"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Kommentar"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Den primära nyckeln har tagits bort"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Index %s har tagits bort"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Index %1$s och %2$s verkar vara identiska och ett av dem kan möjligen tas "
-"bort."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Databaserna"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Fel"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d rad påverkad."
-msgstr[1] "%1$d rader påverkade."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d rad borttagen."
-msgstr[1] "%1$d rader borttagna."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d rad infogad."
-msgstr[1] "%1$d rader infogade."
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Kunde inte spara den senaste tabellen"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "De senaste tabellerna"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Det finns inga nya tabeller"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Det finns ingen detaljerad statusinformation tillgänglig för denna "
-"lagringsmotor."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s är tillgänglig på denna MySQL-server."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s har inaktiverats på denna MySQL-server."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Denna MySQL-server stödjer inte lagringsmotorn %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Ogiltig databas"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Ogiltigt tabellnamn"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Fel vid namnbyte av tabell %1$s till %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabell %s har döpts om till %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Kunde inte spara UI inställningarna för tabellen"
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Ingen giltig sökväg för tema %s hittades!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Ingen förhandsgranskning tillgänglig."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "använd detta"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Standardtema %s hittades inte!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s hittades inte!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Temats sökväg för tema %s hittades inte!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Kan ej skapa förbindelse: ogiltiga inställningar."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Välkommen till %s"
@@ -1911,11 +1701,11 @@ msgstr "Välkommen till %s"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
msgid ""
@@ -1929,43 +1719,43 @@ msgstr ""
"inc.php och förvissa dig om att de stämmer överens med informationen från "
"administratören av MySQL-servern."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Logga in"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin dokumentation"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "Du kan ange värdnamn/IP-adress och port separerade med mellanslag."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Server:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Användarnamn:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Lösenord:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Välj server"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Kakor (cookies) måste tillåtas för att gå vidare."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -1973,14 +1763,14 @@ msgstr ""
"Inloggning utan lösenord är inte tillåtet enligt konfiguration (se "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Ingen aktivitet sedan %s sekunder; var god logga in igen"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Kan ej logga in på MySQL-server"
@@ -2019,6 +1809,14 @@ msgstr "PBMS fel"
msgid "PBMS connection failed:"
msgstr "PBMS uppkoppling misslyckades"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Fel"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS hämtar BLOB info misslyckades"
@@ -2071,6 +1869,11 @@ msgstr "Tabeller"
msgid "Data"
msgstr "Data"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Index"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2100,13 +1903,13 @@ msgstr "Kontrollera privilegier"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Kunde inte spara konfigurationen"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2351,77 +2154,9 @@ msgstr "Det finns inga filer att ladda upp"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Båda"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Ingenstans"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Vänster"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Höger"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Öppen"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Stängd"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "struktur"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "data"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "struktur och data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Snabb - visa endast få alternativ för konfiguration"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Anpassad - visa alla tillgängliga konfigurations optioner"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Anpassad - Som ovan, men utan valet snabb/anpassad "
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "kompletta infogningar"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "utökade infogningar"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "båda av ovanstående"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "Ingen av ovanstående"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Teckenstorlek"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3077,6 +2812,12 @@ msgstr "Ange kataloger för import och export och komprimeringsalternativ"
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Databaserna"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Visningsalternativ för databaser"
@@ -4690,6 +4431,78 @@ msgstr "Tomt lösenord för phpMyAdmin kontrollanvändare vid användning av pma
msgid "Incorrect IP address: %s"
msgstr "Felaktig IP-adress: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Båda"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Ingenstans"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Vänster"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Höger"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Öppen"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Stängd"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "struktur"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "data"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "struktur och data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Snabb - visa endast få alternativ för konfiguration"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Anpassad - visa alla tillgängliga konfigurations optioner"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Anpassad - Som ovan, men utan valet snabb/anpassad "
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "kompletta infogningar"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "utökade infogningar"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "båda av ovanstående"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "Ingen av ovanstående"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4760,6 +4573,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "Lägg till en ny server"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr "Uppkoppling för controluser enligt din konfiguration misslyckades."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Servern svarar inte"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(eller den lokala MySQL-serverns socket är inte korrekt konfigurerad)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Detaljer..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4834,9 +4664,9 @@ msgstr "Längd/Värden"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4895,6 +4725,11 @@ msgstr "Säkerhet"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Kommentar"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4961,23 +4796,6 @@ msgstr ""
"Kan vara ungefärligt. Se [a@./Documentation.html#faq3_11@Documentation)FAQ "
"3.11[/a]"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr "Uppkoppling för controluser enligt din konfiguration misslyckades."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Servern svarar inte"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(eller den lokala MySQL-serverns socket är inte korrekt konfigurerad)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Detaljer..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5116,8 +4934,8 @@ msgstr ", @TABLE@ blir 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 "
@@ -5888,11 +5706,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@@ -6194,6 +6012,45 @@ msgstr "Vy"
msgid "Export contents"
msgstr "Exportera innehåll"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Den uppladdade filen överskrider direktivet upload_max_filesize i php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Den uppladdade filen överskrider direktivet MAX_FILE_SIZE som specificerades "
+"i HTML-formuläret."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Den uppladdade filen blev endast delvis uppladdad."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Saknar en temporär katalog."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Misslyckades att skriva fil till disk."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Filuppladdning stoppades av tillägg."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Okänt fel i filuppladdning."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Fel vid flytt av uppladdad fil, se FAQ 1.11"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6213,42 +6070,6 @@ msgstr "SQL-resultat"
msgid "Generated by"
msgstr "Genererad av"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Följande strukturer har antingen skapats eller ändrats. Här kan du"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Visa en strukturs innehåll genom att klicka på dess namn"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Ändra någon av inställningarna genom att klicka på motsvarande \"Alternativ"
-"\" länk"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Redigera dess struktur genom att följa \"Struktur\" länken"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Gå till databas"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "inställningar"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Gå till tabell"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Gå till vy"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6315,6 +6136,42 @@ msgstr "Kolumn-namn"
msgid "This plugin does not support compressed imports!"
msgstr "Detta tillägg stöder inte komprimerade importer!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Följande strukturer har antingen skapats eller ändrats. Här kan du"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Visa en strukturs innehåll genom att klicka på dess namn"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Ändra någon av inställningarna genom att klicka på motsvarande \"Alternativ"
+"\" länk"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Redigera dess struktur genom att följa \"Struktur\" länken"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Gå till databas"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "inställningar"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Gå till tabell"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Gå till vy"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6340,6 +6197,42 @@ msgstr ""
"Den angivna XML-filen var antingen felaktig eller ofullständig. Korrigera "
"problemet och försök igen."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Inga index är definierade!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unik"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Packad"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinalitet"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Den primära nyckeln har tagits bort"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Index %s har tagits bort"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Index %1$s och %2$s verkar vara identiska och ett av dem kan möjligen tas "
+"bort."
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6350,6 +6243,27 @@ msgstr "Inget"
msgid "Convert to Kana"
msgstr "Konvertera till Kana"
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d rad påverkad."
+msgstr[1] "%1$d rader påverkade."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d rad borttagen."
+msgstr[1] "%1$d rader borttagna."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d rad infogad."
+msgstr[1] "%1$d rader infogade."
+
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "Från"
@@ -6588,6 +6502,18 @@ msgstr "Ladda om navigering ram"
msgid "This format has no options"
msgstr "Detta format har inga alternativ"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Kunde inte spara den senaste tabellen"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "De senaste tabellerna"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Det finns inga nya tabeller"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Inte OK"
@@ -6972,61 +6898,6 @@ msgstr "Skillnad"
msgid "Target database"
msgstr "Måldatabas"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Kör SQL-fråga/frågor på server %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Kör SQL-fråga/frågor i databasen %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Rensa"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Kolumn"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Skapa bokmärke för den här SQL-frågan"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Låt varje användare få tillgång till detta bokmärke"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Ersätt befintligt bokmärke med samma namn"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Skriv inte över denna fråga utifrån detta fönster"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Avgränsare"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Visa frågan här igen "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Visa endast"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Textfilens plats"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "Uppladdningskatalog på webbserver"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7090,6 +6961,61 @@ msgstr "Ogiltig identifierare"
msgid "Unknown Punctuation String"
msgstr "Okänd interpunktion i sträng"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Kör SQL-fråga/frågor på server %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Kör SQL-fråga/frågor i databasen %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Rensa"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Kolumn"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Skapa bokmärke för den här SQL-frågan"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Låt varje användare få tillgång till detta bokmärke"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Ersätt befintligt bokmärke med samma namn"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Skriv inte över denna fråga utifrån detta fönster"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Avgränsare"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Visa frågan här igen "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Visa endast"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Textfilens plats"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "Uppladdningskatalog på webbserver"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7099,6 +7025,50 @@ msgstr ""
"SQL-validatorn kunde inte initieras. Kontrollera om du har installerat de "
"nödvändiga PHP-tilläggen enligt %sdokumentationen%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Det finns ingen detaljerad statusinformation tillgänglig för denna "
+"lagringsmotor."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s är tillgänglig på denna MySQL-server."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s har inaktiverats på denna MySQL-server."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Denna MySQL-server stödjer inte lagringsmotorn %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Ogiltig databas"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Ogiltigt tabellnamn"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Fel vid namnbyte av tabell %1$s till %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabell %s har döpts om till %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Kunde inte spara UI inställningarna för tabellen"
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabellen verkar vara tom!"
@@ -7217,6 +7187,38 @@ msgstr "Partitionsdefinition"
msgid "+ Add a new value"
msgstr "+ Lägg till ett nytt värde"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Ingen giltig sökväg för tema %s hittades!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Ingen förhandsgranskning tillgänglig."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "använd detta"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Standardtema %s hittades inte!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s hittades inte!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Temats sökväg för tema %s hittades inte!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7544,8 +7546,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."
#: main.php:341
#, php-format
@@ -8256,8 +8258,8 @@ msgstr "Ta bort databaserna med samma namn som användarna."
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 privilegier direkt från MySQL:s "
"privilegiumtabeller. Innehållet i dessa tabeller kan skilja sig från "
@@ -9802,8 +9804,8 @@ 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 detta är nödvändigt, använd extra skyddsinställningar - "
-"%shost autentisering%s inställningarna och %strusted proxies listan%s. Dock "
+"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - %"
+"shost autentisering%s inställningarna och %strusted proxies listan%s. Dock "
"kan IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP där "
"tusentals användare, inklusive dig, är anslutna till"
diff --git a/po/ta.po b/po/ta.po
index d2d7f1888a..a65d54bb69 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
"Last-Translator: Sutharshan \n"
"Language-Team: Tamil \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: Pootle 2.0.1\n"
@@ -48,10 +48,10 @@ msgstr "தேடல்"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "தேடல்"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "செல் "
@@ -130,9 +130,9 @@ msgstr ""
msgid "Table comments"
msgstr ""
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -141,12 +141,12 @@ msgstr ""
msgid "Column"
msgstr ""
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -156,9 +156,9 @@ msgstr ""
msgid "Type"
msgstr ""
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -196,12 +196,13 @@ msgstr ""
msgid "Comments"
msgstr ""
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -212,17 +213,17 @@ msgstr ""
msgid "No"
msgstr ""
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -330,8 +331,8 @@ msgstr "தடைகளை சேர்க்க"
msgid "Switch to copied database"
msgstr ""
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -497,8 +498,8 @@ msgstr ""
msgid "Submit Query"
msgstr ""
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -594,7 +595,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "அனுமதி நிராகரிக்கப்பட்டுள்ளது"
@@ -711,8 +712,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -730,7 +731,7 @@ msgstr ""
msgid "Sum"
msgstr ""
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
@@ -779,8 +780,8 @@ msgstr ""
msgid "Empty"
msgstr ""
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -855,9 +856,9 @@ msgstr ""
msgid "Status"
msgstr ""
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -949,8 +950,8 @@ msgstr ""
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1118,11 +1119,11 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr ""
@@ -1695,218 +1696,12 @@ msgstr ""
msgid "Second"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr ""
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr ""
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr ""
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr ""
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr ""
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr ""
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr ""
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr ""
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d வரிசை மாற்றப்பட்டுள்ளது"
-msgstr[1] "%1$d வரிசைகள் மாற்றப்பட்டுள்ளன"
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d வரிசை அகற்றப்பட்டுள்ளது"
-msgstr[1] "%1$d வரிசைகள் அகற்றப்பட்டுள்ளன"
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d வரிசை சேர்க்கப்பட்டுள்ளது"
-msgstr[1] "%1$d வரிசைகள் சேர்க்கப்பட்டுள்ளன"
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Display table filter"
-msgid "Recent tables"
-msgstr "கருதிட்குள் சேர்க்க"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr ""
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr ""
@@ -1914,8 +1709,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:106
#, 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 "
"பயன்படுத்தலாம்"
@@ -1931,56 +1726,56 @@ msgstr ""
"சேவர், பயனாளர் பெயர், கடவுச் சொல் என்பவை MySql நிர்வாகியால் வழங்கப்பட்ட தரவுகளுடன் "
"பொருந்துகின்றதா என சரி பாருங்கள்."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr ""
@@ -2019,6 +1814,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr ""
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2071,6 +1874,11 @@ msgstr ""
msgid "Data"
msgstr ""
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr ""
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2098,13 +1906,13 @@ msgid "Check Privileges"
msgstr ""
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr ""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2347,76 +2155,8 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr ""
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr ""
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr ""
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr ""
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr ""
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
+#: libraries/Config.class.php:1190
+msgid "Font size"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -3049,6 +2789,12 @@ msgstr ""
msgid "LaTeX"
msgstr ""
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr ""
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4526,6 +4272,78 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr ""
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr ""
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr ""
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr ""
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr ""
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4591,6 +4409,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "புதிய பயனாளரை சேர்க்க"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4660,9 +4495,9 @@ msgstr ""
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4711,6 +4546,11 @@ msgstr ""
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr ""
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4769,23 +4609,6 @@ msgid ""
"3.11[/a]"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4924,8 +4747,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:275
@@ -5621,8 +5444,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -5907,6 +5730,42 @@ msgstr ""
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5924,40 +5783,6 @@ msgstr ""
msgid "Generated by"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6017,6 +5842,40 @@ msgstr ""
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6039,6 +5898,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr ""
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr ""
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr ""
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6049,6 +5942,27 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d வரிசை மாற்றப்பட்டுள்ளது"
+msgstr[1] "%1$d வரிசைகள் மாற்றப்பட்டுள்ளன"
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d வரிசை அகற்றப்பட்டுள்ளது"
+msgstr[1] "%1$d வரிசைகள் அகற்றப்பட்டுள்ளன"
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d வரிசை சேர்க்கப்பட்டுள்ளது"
+msgstr[1] "%1$d வரிசைகள் சேர்க்கப்பட்டுள்ளன"
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6289,6 +6203,20 @@ msgstr ""
msgid "This format has no options"
msgstr ""
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Display table filter"
+msgid "Recent tables"
+msgstr "கருதிட்குள் சேர்க்க"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr ""
@@ -6660,6 +6588,57 @@ msgstr ""
msgid "Target database"
msgstr ""
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sql_query_form.lib.php:223
#, php-format
msgid "Run SQL query/queries on server %s"
@@ -6715,57 +6694,6 @@ msgstr ""
msgid "web server upload directory"
msgstr ""
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6773,6 +6701,48 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr ""
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -6882,6 +6852,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "புதிய பயனாளரை சேர்க்க"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7832,8 +7834,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 ""
#: server_privileges.php:1764
diff --git a/po/te.po b/po/te.po
index 3f88ba0061..caeafa08e8 100644
--- a/po/te.po
+++ b/po/te.po
@@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-04-07 17:06+0200\n"
"Last-Translator: \n"
"Language-Team: Telugu \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: Pootle 2.0.5\n"
@@ -49,10 +49,10 @@ msgstr "శోధించు"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "శోధించు"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "వెళ్ళు"
@@ -132,9 +132,9 @@ msgid "Table comments"
msgstr "పట్టిక వ్యాఖ్యలు"
# మొదటి అనువాదము
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -145,12 +145,12 @@ msgstr "పట్టిక వ్యాఖ్యలు"
msgid "Column"
msgstr "ఆజ్ఞ"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -160,9 +160,9 @@ msgstr "ఆజ్ఞ"
msgid "Type"
msgstr "రకం"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -200,12 +200,13 @@ msgstr ""
msgid "Comments"
msgstr "వ్యాఖ్యలు"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -216,17 +217,17 @@ msgstr "వ్యాఖ్యలు"
msgid "No"
msgstr "కాదు"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -337,8 +338,8 @@ msgstr ""
msgid "Switch to copied database"
msgstr ""
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -504,8 +505,8 @@ msgstr ""
msgid "Submit Query"
msgstr "క్వెరీ ని సమర్పించు"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -608,7 +609,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "యాక్సెస్ నిరోధించడమైనది"
@@ -728,8 +729,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
# మొదటి అనువాదము
@@ -749,7 +750,7 @@ msgstr ""
msgid "Sum"
msgstr "మొత్తము"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
@@ -799,8 +800,8 @@ msgstr ""
msgid "Empty"
msgstr "ఖాళీ"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -876,9 +877,9 @@ msgstr ""
msgid "Status"
msgstr "స్థితి"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -970,8 +971,8 @@ msgstr ""
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1143,11 +1144,11 @@ msgstr ""
msgid "Close"
msgstr "మూసివేయి"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "మార్చు"
@@ -1708,223 +1709,12 @@ msgstr "నిమిషం"
msgid "Second"
msgstr "క్షణం"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr ""
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr ""
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr ""
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr ""
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr ""
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "వ్యాఖ్య"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr ""
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "పొరపాటు"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Server configuration"
-msgid "Could not save recent table"
-msgstr "సేవకి స్వరూపణం"
-
-# మొదటి అనువాదము
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgctxt "short form"
-#| msgid "Create table"
-msgid "Recent tables"
-msgstr "పట్టికను సృష్టించు"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr ""
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-# మొదటి అనువాదము
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "తీసుకొనుము"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "%sకి స్వాగతం"
@@ -1932,8 +1722,8 @@ msgstr "%sకి స్వాగతం"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
@@ -1944,57 +1734,57 @@ msgid ""
"the administrator of the MySQL server."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "ప్రవేశించు"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr ""
# మొదటి అనువాదము
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "వాడుకరి పేరు"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "సంకేతపదం:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr ""
@@ -2038,6 +1828,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "పుటని సృష్టించుటలో తప్పిదము జరిగినది"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "పొరపాటు"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2092,6 +1890,11 @@ msgstr "పట్టికలు"
msgid "Data"
msgstr ""
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr ""
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2121,13 +1924,13 @@ msgstr ""
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Server configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "సేవకి స్వరూపణం"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2373,80 +2176,8 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-#, fuzzy
-#| msgid "Height"
-msgid "Right"
-msgstr "ఎత్తు"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Close"
-msgid "Closed"
-msgstr "మూసివేయి"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "నిర్మాణాకృతి"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "భోగట్టా"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "నిర్మాణాకృతి మరియు భోగట్టా"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr ""
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr ""
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
+#: libraries/Config.class.php:1190
+msgid "Font size"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -3079,6 +2810,12 @@ msgstr ""
msgid "LaTeX"
msgstr ""
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr ""
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4565,6 +4302,82 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "తప్పుడు ఐపీ చిరునామా: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+#, fuzzy
+#| msgid "Height"
+msgid "Right"
+msgstr "ఎత్తు"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Close"
+msgid "Closed"
+msgstr "మూసివేయి"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "నిర్మాణాకృతి"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "భోగట్టా"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "నిర్మాణాకృతి మరియు భోగట్టా"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr ""
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr ""
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
# మొదటి అనువాదము
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
@@ -4632,6 +4445,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "క్రొత్త వాడుకరిని చేర్చు"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "వివరాలు..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4707,9 +4537,9 @@ msgstr "పొడవు/విలువలు"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4767,6 +4597,11 @@ msgstr "భద్రత"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "వ్యాఖ్య"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4826,23 +4661,6 @@ msgid ""
"3.11[/a]"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "వివరాలు..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4987,8 +4805,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:275
@@ -5691,8 +5509,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -5979,6 +5797,42 @@ msgstr "చూపుము"
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5996,40 +5850,6 @@ msgstr ""
msgid "Generated by"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "అమరికలు"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6091,6 +5911,40 @@ msgstr ""
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "అమరికలు"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6113,6 +5967,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr ""
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr ""
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr ""
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6123,6 +6011,27 @@ msgstr "ఏమీలేదు"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6375,6 +6284,24 @@ msgstr ""
msgid "This format has no options"
msgstr ""
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Server configuration"
+msgid "Could not save recent table"
+msgstr "సేవకి స్వరూపణం"
+
+# మొదటి అనువాదము
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgctxt "short form"
+#| msgid "Create table"
+msgid "Recent tables"
+msgstr "పట్టికను సృష్టించు"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr ""
@@ -6746,6 +6673,57 @@ msgstr "తేడా"
msgid "Target database"
msgstr ""
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sql_query_form.lib.php:223
#, php-format
msgid "Run SQL query/queries on server %s"
@@ -6803,57 +6781,6 @@ msgstr "పాఠ్యపు దస్త్రం యొక్క ప్రా
msgid "web server upload directory"
msgstr ""
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6861,6 +6788,48 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr ""
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -6973,6 +6942,39 @@ msgstr ""
msgid "+ Add a new value"
msgstr "క్రొత్త వినియోగదారుని చేర్చు"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+# మొదటి అనువాదము
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "తీసుకొనుము"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7949,8 +7951,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 ""
#: server_privileges.php:1764
diff --git a/po/th.po b/po/th.po
index 3517193d95..bd9020f1d8 100644
--- a/po/th.po
+++ b/po/th.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: thai \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -46,10 +46,10 @@ msgstr "ค้นหา"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -62,18 +62,18 @@ msgstr "ค้นหา"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "ลงมือ"
@@ -128,9 +128,9 @@ msgstr "หมายเหตุของฐานข้อมูล: "
msgid "Table comments"
msgstr "หมายเหตุของตาราง"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -141,12 +141,12 @@ msgstr "หมายเหตุของตาราง"
msgid "Column"
msgstr "ชื่อคอลัมน์"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -156,9 +156,9 @@ msgstr "ชื่อคอลัมน์"
msgid "Type"
msgstr "ชนิด"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -196,12 +196,13 @@ msgstr "เชื่อมไปยัง"
msgid "Comments"
msgstr "หมายเหตุ"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -212,17 +213,17 @@ msgstr "หมายเหตุ"
msgid "No"
msgstr "ไม่"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -330,8 +331,8 @@ msgstr "เพิ่ม constraints"
msgid "Switch to copied database"
msgstr "สลับไปยังฐานข้อมูลที่ถูกทำสำเนาไว้"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -498,8 +499,8 @@ msgstr "คำค้นบนฐานข้อมูล %s:"
msgid "Submit Query"
msgstr "ประมวลผลคำค้น"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -600,7 +601,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "ไม่อนุญาตให้ใช้งาน"
@@ -726,8 +727,8 @@ msgstr "หยุดการติดตามแล้ว"
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -745,7 +746,7 @@ msgstr "การทำข้อมูลซ้ำไปไว้อีกที
msgid "Sum"
msgstr "ผลรวม"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "เซิร์ฟเวอร์ MySQL นี้ใช้ storage engine ชื่อ %s เป็นค่าเริ่มต้น"
@@ -794,8 +795,8 @@ msgstr "แสดง"
msgid "Empty"
msgstr "ลบข้อมูล"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -873,9 +874,9 @@ msgstr "ปรับปรุงแล้ว"
msgid "Status"
msgstr "สถานะ"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -967,8 +968,8 @@ msgstr ""
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1143,11 +1144,11 @@ msgstr "ถอนผู้ใช้ที่เลือก"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "แก้ไข"
@@ -1770,222 +1771,12 @@ msgstr "ใช้อยู่"
msgid "Second"
msgstr "ต่อวินาที"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr ""
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "ยังไม่ได้กำหนดดัชนีใดๆ!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "ดัชนี"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "เอกลักษณ์"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinality"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "หมายเหตุ"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "โยนไพรมารีคีย์ทิ้งไปเรียบร้อยแล้ว"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "โยนดัชนี %s ทิ้งไปเรียบร้อยแล้ว"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "ฐานข้อมูล"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "ผิดพลาด"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "ยังไม่ได้เลือกแถว"
-msgstr[1] "ยังไม่ได้เลือกแถว"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "ยังไม่ได้เลือกแถว"
-msgstr[1] "ยังไม่ได้เลือกแถว"
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "ไม่มีตาราง"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "Tracked tables"
-msgid "There are no recent tables"
-msgstr "ตารางที่ถูกติดตาม"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "ตาราง %s ได้ถูกเปลี่ยนชื่อเป็น %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "%s ยินดีต้อนรับ"
@@ -1993,8 +1784,8 @@ msgstr "%s ยินดีต้อนรับ"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
@@ -2005,56 +1796,56 @@ msgid ""
"the administrator of the MySQL server."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "เข้าสู่ระบบ"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "เอกสารการใช้ phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "เซิร์ฟเวอร์"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "ชื่อผู้ใช้:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "รหัสผ่าน:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "ตัวเลือกเซิร์ฟเวอร์"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "ต้องอนุญาตใช้ใช้ 'คุ๊กกี้' (cookie) เสียก่อน จึงจะผ่านจุดนี้ไปได้"
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "ไม่สามารถล็อกอินเข้าเซิร์ฟเวอร์ MySQL ได้"
@@ -2093,6 +1884,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "ผิดพลาด"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2145,6 +1944,11 @@ msgstr "ตาราง"
msgid "Data"
msgstr "ข้อมูล"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "ดัชนี"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2174,13 +1978,13 @@ msgid "Check Privileges"
msgstr "ตรวจสอบสิทธิ"
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr ""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2424,85 +2228,8 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "ไม่ได้ปิดเครื่องหมายคำพูด"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "โครงสร้าง"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "ทั้งโครงสร้างและข้อมูล"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "คำสั่ง INSERT เต็มรูปแบบ"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "แทรกหลายระเบียนในคราวเดียว"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
+#: libraries/Config.class.php:1190
+msgid "Font size"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -3173,6 +2900,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "ฐานข้อมูล"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4704,6 +4437,87 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "ไม่ได้ปิดเครื่องหมายคำพูด"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "โครงสร้าง"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "ทั้งโครงสร้างและข้อมูล"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "คำสั่ง INSERT เต็มรูปแบบ"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "แทรกหลายระเบียนในคราวเดียว"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4773,6 +4587,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "เพิ่มผู้ใช้ใหม่"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอบสนอง"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4845,9 +4676,9 @@ msgstr "ความยาว/เซต*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4907,6 +4738,12 @@ msgstr "ชนิดคำค้น"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "หมายเหตุ"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4969,23 +4806,6 @@ msgid ""
"3.11[/a]"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอบสนอง"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5146,8 +4966,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:275
@@ -5880,8 +5700,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6191,6 +6011,42 @@ msgstr ""
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6208,41 +6064,6 @@ msgstr "ผลลัพธ์ SQL"
msgid "Generated by"
msgstr "สร้างโดย"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "ไม่มีฐานข้อมูล"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6304,6 +6125,41 @@ msgstr "ชื่อคอลัมน์"
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "ไม่มีฐานข้อมูล"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6326,6 +6182,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "ยังไม่ได้กำหนดดัชนีใดๆ!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "เอกลักษณ์"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinality"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "โยนไพรมารีคีย์ทิ้งไปเรียบร้อยแล้ว"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "โยนดัชนี %s ทิ้งไปเรียบร้อยแล้ว"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6338,6 +6228,29 @@ msgstr "ไม่มี"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "ยังไม่ได้เลือกแถว"
+msgstr[1] "ยังไม่ได้เลือกแถว"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "ยังไม่ได้เลือกแถว"
+msgstr[1] "ยังไม่ได้เลือกแถว"
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6583,6 +6496,21 @@ msgstr ""
msgid "This format has no options"
msgstr "รูปแบบนี้ไม่มีตัวเลือก"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "ไม่มีตาราง"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "Tracked tables"
+msgid "There are no recent tables"
+msgstr "ตารางที่ถูกติดตาม"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "ไม่ตกลง"
@@ -6974,64 +6902,6 @@ msgstr ""
msgid "Target database"
msgstr "ค้นหาในฐานข้อมูล"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "ประมวลผลคำค้นบนฐานข้อมูล %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "ประมวลผลคำค้นบนฐานข้อมูล %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "ปฏิทิน"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "ชื่อคอลัมน์"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "จดคำค้นนี้ไว้"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " แสดงคำค้นนี้อีกที "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "ดูอย่างเดียว"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "เลือกไฟล์ข้อความจาก"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7093,6 +6963,64 @@ msgstr "ชื่อตัวแปรไม่ถูกต้อง"
msgid "Unknown Punctuation String"
msgstr "มีเครื่องหมายวรรคตอนที่ไม่รู้จัก"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "ประมวลผลคำค้นบนฐานข้อมูล %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "ประมวลผลคำค้นบนฐานข้อมูล %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "ปฏิทิน"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "ชื่อคอลัมน์"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "จดคำค้นนี้ไว้"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " แสดงคำค้นนี้อีกที "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "ดูอย่างเดียว"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "เลือกไฟล์ข้อความจาก"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7102,6 +7030,48 @@ msgstr ""
"ไม่สามารถเริ่มตัวตรวจสอบ SQL ได้. กรุณาตรวจสอบว่า คุณได้ติดตั้ง php extensions ที่จำเป็น "
"ดังที่อธิบายไว้ใน %sdocumentation%s เรียบร้อยแล้ว"
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "ตาราง %s ได้ถูกเปลี่ยนชื่อเป็น %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7224,6 +7194,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "เพิ่มผู้ใช้ใหม่"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8251,8 +8253,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 ""
#: server_privileges.php:1764
@@ -10557,8 +10559,8 @@ msgstr "เปลี่ยนชื่อตารางเป็น"
#~ "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 "ไม่มีตาราง"
diff --git a/po/tr.po b/po/tr.po
index b703c1f79a..ec2139c8e4 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-06-21 21:37+0200\n"
"Last-Translator: Burak Yavuz \n"
"Language-Team: turkish \n"
-"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: tr\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -48,10 +48,10 @@ msgstr "Ara"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Ara"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Git"
@@ -132,9 +132,9 @@ msgstr "Veritabanı yorumu: "
msgid "Table comments"
msgstr "Tablo yorumları"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Tablo yorumları"
msgid "Column"
msgstr "Sütun"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Sütun"
msgid "Type"
msgstr "Türü"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "Bağlantı verilen"
msgid "Comments"
msgstr "Yorumlar"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "Yorumlar"
msgid "No"
msgstr "Hayır"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -332,8 +333,8 @@ msgstr "Kısıtlamaları ekle"
msgid "Switch to copied database"
msgstr "Kopyalanmış veritabanına geç"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -496,8 +497,8 @@ msgstr "%s veritabanındaki SQL sorgusu:"
msgid "Submit Query"
msgstr "Sorguyu Gönder"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -596,7 +597,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Erişim engellendi"
@@ -715,8 +716,8 @@ msgstr "İzleme aktif değil."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
@@ -735,7 +736,7 @@ msgstr "Kopya Etme"
msgid "Sum"
msgstr "Toplam"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s bu MySQL sunucusundaki varsayılan depolama motorudur."
@@ -784,8 +785,8 @@ msgstr "Baskı görünümü"
msgid "Empty"
msgstr "Boşalt"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -858,9 +859,9 @@ msgstr "Güncellendi"
msgid "Status"
msgstr "Durum"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -954,8 +955,8 @@ msgstr "Döküm, %s dosyasına kaydedildi."
#: import.php:58
#, 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."
msgstr ""
"Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınıra çözüm yolu "
"bulmak için %sbelgeden%s yararlanın."
@@ -1136,11 +1137,11 @@ msgstr "Seçili Kullanıcılar Kaldırılıyor"
msgid "Close"
msgstr "Kapat"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Düzenle"
@@ -1414,8 +1415,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:166
@@ -1673,220 +1674,12 @@ msgstr "Dakika"
msgid "Second"
msgstr "Saniye"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Yazı Tipi boyutu"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Gönderilen dosya, php.ini içindeki upload_max_filesize yönergesini aşıyor."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Gönderilen dosya, HTML formu içinde belirlenmiş MAX_FILE_SIZE yönergesini "
-"aşıyor."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Gönderilen dosya sadece kısmen gönderildi."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Eksik geçici klasör."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Dosyayı diske yazma başarısız."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Dosya gönderme uzantısından dolayı durduruldu."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Dosya göndermede bilinmeyen hata oldu."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Gönderilen dosyayı taşıma hatası, [a@./Documentation."
-"html#faq1_11@Documentation]SSS 1.11[/a]'e bakın"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Tanımlı indeks yok!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "İndeksler"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Benzersiz"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Paketlendi"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Önemlilik"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Yorum"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Birincil anahtar kaldırıldı"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "%s indeksi kaldırıldı"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"İndeks %1$s ve %2$s eşit görünüyor ve bunlardan birinin silinmesi mümkün "
-"olabilir."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Veritabanları"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Hata"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d satır etkilendi."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d satır silindi."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d satır eklendi."
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Son tablo kaydedilemedi"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Son tablolar"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Son tablolar yok"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Bu depolama motoru için ayrıntılı durum bilgisi mevcut değil."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s bu MySQL sunucusunda var."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s bu MySQL sunucusu için etkisizleştirildi."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Bu MySQL sunucusu %s depolama motorunu desteklemez."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Geçersiz veritabanı"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Geçersiz tablo adı"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "%1$s tablo adını %2$s tablo adına değiştirme hatası"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "%s tablosu %s olarak yeniden adlandırıldı"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Tablo KA tercihleri kaydedilemedi"
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "%s teması için geçerli resim yolu bulunamadı!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Önizleme mevcut değil."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "Al"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Varsayılan tema %s bulunamadı!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "%s teması bulunamadı!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "%s teması için tema yolu bulunamadı!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr "Tema"
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Bağlanamıyor: geçersiz ayarlar."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "%s'e Hoş Geldiniz"
@@ -1894,8 +1687,8 @@ msgstr "%s'e Hoş Geldiniz"
#: libraries/auth/config.auth.lib.php:106
#, 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."
@@ -1912,45 +1705,45 @@ msgstr ""
"parolayı kontrol edin ve MySQL sunucusu yöneticisi tarafından verilen "
"bilgiye uyduğundan emin olun."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Oturum aç"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin belgeleri"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
"Anamakine adı/IP adresi ve bağlantı noktasını boşluk bırakarak ayrı "
"girebilirsiniz."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Sunucu:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Kullanıcı Adı:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Parola:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Sunucu Seçimi"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Bu kısmı geçmek için tanımlama bilgileri (cookies) açık olmalıdır."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -1958,14 +1751,14 @@ msgstr ""
"Yapılandırma tarafından parolasız oturum açma yasaktır (AllowNoPassword'a "
"bakın)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "%s saniye içinde hiçbir işlem yapılmadı, lütfen yeniden oturum açın"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "MySQL sunucusuna oturum açılamıyor"
@@ -2004,6 +1797,14 @@ msgstr "PBMS hatası"
msgid "PBMS connection failed:"
msgstr "PBMS bağlantısı başarısız:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Hata"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS, BLOB bilgisi alması başarısız:"
@@ -2056,6 +1857,11 @@ msgstr "Tablolar"
msgid "Data"
msgstr "Veri"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "İndeksler"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2085,13 +1891,13 @@ msgstr "Yetkileri kontrol et"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Yapılandırma kaydedilemedi"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2338,77 +2144,9 @@ msgstr "Göndermek için dosyalar yok"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Her ikisi"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Hiçbir yeri"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Sol"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Sağ"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Açık"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Kapandı"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "yapı"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "veri"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "yapı ve veri"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Hızlı - yapılandırmak için sadece en az seçenekleri göster"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Özel - yapılandırmak için tüm olası seçenekleri göster"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Özel - yukarıdaki gibi ancak hızlı/özel seçimsiz"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "tam eklemeler"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "genişletilmiş eklemeler"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "yukarıdakinin ikisi birden"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "yukarıdakinin hiçbiri"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Yazı Tipi boyutu"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3064,6 +2802,12 @@ msgstr "İçe ve dışa aktarma dizinlerini ve sıkıştırma seçeneklerini aya
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Veritabanları"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Veritabanlarının görüntü seçenekleri"
@@ -4703,6 +4447,78 @@ msgstr "pmadb kullanan boş phpMyAdmin denetim kullanıcısı parolası"
msgid "Incorrect IP address: %s"
msgstr "Yanlış IP adresi: %s"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Her ikisi"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Hiçbir yeri"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Sol"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Sağ"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Açık"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Kapandı"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "yapı"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "veri"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "yapı ve veri"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Hızlı - yapılandırmak için sadece en az seçenekleri göster"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Özel - yapılandırmak için tüm olası seçenekleri göster"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Özel - yukarıdaki gibi ancak hızlı/özel seçimsiz"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "tam eklemeler"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "genişletilmiş eklemeler"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "yukarıdakinin ikisi birden"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "yukarıdakinin hiçbiri"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4766,6 +4582,25 @@ msgstr ""
msgid "Add a new Event"
msgstr "Yeni bir Olay ekle"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+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ı "
+"başarısız oldu."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Sunucu yanıt vermiyor"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(ya da yerel MySQL sunucusunun soketi doğru olarak yapılandırılmadı)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Ayrıntılar..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4833,9 +4668,9 @@ msgstr "Uzunluk/Değerler"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4882,6 +4717,11 @@ msgstr "Güvenlik türü"
msgid "SQL data access"
msgstr "SQL veri erişimi"
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Yorum"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr "Yordam parametreleri"
@@ -4940,25 +4780,6 @@ msgstr ""
"Yaklaşık olabilir. [a@./Documentation.html#faq3_11@Documentation]SSS 3.11[/"
"a]'e bakın"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-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ı "
-"başarısız oldu."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Sunucu yanıt vermiyor"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(ya da yerel MySQL sunucusunun soketi doğru olarak yapılandırılmadı)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Ayrıntılar..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5098,8 +4919,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 "
@@ -5872,8 +5693,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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."
@@ -6181,6 +6002,47 @@ msgstr "Görünümler"
msgid "Export contents"
msgstr "İçerikleri dışa aktar"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Gönderilen dosya, php.ini içindeki upload_max_filesize yönergesini aşıyor."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Gönderilen dosya, HTML formu içinde belirlenmiş MAX_FILE_SIZE yönergesini "
+"aşıyor."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Gönderilen dosya sadece kısmen gönderildi."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Eksik geçici klasör."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Dosyayı diske yazma başarısız."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Dosya gönderme uzantısından dolayı durduruldu."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Dosya göndermede bilinmeyen hata oldu."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Gönderilen dosyayı taşıma hatası, [a@./Documentation."
+"html#faq1_11@Documentation]SSS 1.11[/a]'e bakın"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6200,42 +6062,6 @@ msgstr "SQL sonucu"
msgid "Generated by"
msgstr "Üreten:"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Aşağıdaki yapılar ya oluşturuldu ya da değiştirildi. Buyurun:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "İsmine tıklayarak yapının içeriklerini görüntüleyin"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Uyan \"Seçenekler\" bağlantısına tıklayarak bunun herhangi bir ayarını "
-"değiştirin"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Aşağıdaki \"Yapı\" bağlantısıyla bunun yapısını düzenleyin"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Veritabanına git"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "ayarlar"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Tabloya git"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Görünüme git"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6302,6 +6128,42 @@ msgstr "Sütun adları"
msgid "This plugin does not support compressed imports!"
msgstr "Bu eklenti sıkıştırılmış içe aktarım dosyalarını desteklemez!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Aşağıdaki yapılar ya oluşturuldu ya da değiştirildi. Buyurun:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "İsmine tıklayarak yapının içeriklerini görüntüleyin"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Uyan \"Seçenekler\" bağlantısına tıklayarak bunun herhangi bir ayarını "
+"değiştirin"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Aşağıdaki \"Yapı\" bağlantısıyla bunun yapısını düzenleyin"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Veritabanına git"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "ayarlar"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Tabloya git"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Görünüme git"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr "Yüzdeleri doğru ondalık olarak içe aktar (örn. %12.00'ı .12'ye)"
@@ -6326,6 +6188,42 @@ msgstr ""
"Belirlenmiş XML dosyası ya kusurlu ya da tamamlanmamış. Lütfen sorunu "
"düzeltin ve tekrar deneyin."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Tanımlı indeks yok!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Benzersiz"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Paketlendi"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Önemlilik"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Birincil anahtar kaldırıldı"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "%s indeksi kaldırıldı"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"İndeks %1$s ve %2$s eşit görünüyor ve bunlardan birinin silinmesi mümkün "
+"olabilir."
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6336,6 +6234,24 @@ msgstr "Yok"
msgid "Convert to Kana"
msgstr "Kana'ya dönüştür"
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d satır etkilendi."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d satır silindi."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d satır eklendi."
+
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "Buradan"
@@ -6574,6 +6490,18 @@ msgstr "Rehber çerçeveyi yeniden yükle"
msgid "This format has no options"
msgstr "Bu biçim seçeneğe sahip değil"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Son tablo kaydedilemedi"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Son tablolar"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Son tablolar yok"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "TAMAM değil"
@@ -6958,61 +6886,6 @@ msgstr "Farkı"
msgid "Target database"
msgstr "Hedef veritabanı"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "%s sunucusu üzerinde SQL sorgusunu/sorgularını çalıştır"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "%s veritabanı üzerinde SQL sorgusunu/sorgularını çalıştır"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Temizle"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Sütun"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Bu SQL sorgusunu işaretle"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Mevcut aynı ismin işaretlemesini değiştir"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Pencere dışından bu sorgunun üzerine yazma"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Sınırlayıcı"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Bu sorguyu burada tekrar göster "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Sadece göster"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Metin dosyasının yeri"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web sunucusu gönderme dizini"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7076,6 +6949,61 @@ msgstr "Geçersiz Tanımlayıcı"
msgid "Unknown Punctuation String"
msgstr "Bilinmeyen Noktalama İşareti Dizgisi"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "%s sunucusu üzerinde SQL sorgusunu/sorgularını çalıştır"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "%s veritabanı üzerinde SQL sorgusunu/sorgularını çalıştır"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Temizle"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Sütun"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Bu SQL sorgusunu işaretle"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Mevcut aynı ismin işaretlemesini değiştir"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Pencere dışından bu sorgunun üzerine yazma"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Sınırlayıcı"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Bu sorguyu burada tekrar göster "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Sadece göster"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Metin dosyasının yeri"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web sunucusu gönderme dizini"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7085,6 +7013,48 @@ msgstr ""
"SQL onaylayıcısı başlatılamadı. %sBelgede%s anlatıldığı gibi lütfen gerekli "
"PHP uzantılarının kurulu olduğunu kontrol edin."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Bu depolama motoru için ayrıntılı durum bilgisi mevcut değil."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s bu MySQL sunucusunda var."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s bu MySQL sunucusu için etkisizleştirildi."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Bu MySQL sunucusu %s depolama motorunu desteklemez."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Geçersiz veritabanı"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Geçersiz tablo adı"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "%1$s tablo adını %2$s tablo adına değiştirme hatası"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "%s tablosu %s olarak yeniden adlandırıldı"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Tablo KA tercihleri kaydedilemedi"
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tablo boş olarak görünüyor!"
@@ -7203,6 +7173,38 @@ msgstr "PARTITION tanımı"
msgid "+ Add a new value"
msgstr "+ Yeni bir değer ekle"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "%s teması için geçerli resim yolu bulunamadı!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Önizleme mevcut değil."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "Al"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Varsayılan tema %s bulunamadı!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "%s teması bulunamadı!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "%s teması için tema yolu bulunamadı!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "Tema"
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8250,8 +8252,8 @@ msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır."
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 "
@@ -9799,9 +9801,9 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları 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 "
+"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları 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 "
"kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir."
#: setup/lib/index.lib.php:268
@@ -9816,8 +9818,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."
#: setup/lib/index.lib.php:270
diff --git a/po/tt.po b/po/tt.po
index 875f2872a5..bdc94c0ab3 100644
--- a/po/tt.po
+++ b/po/tt.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-07-22 02:25+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: tatarish \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: Pootle 2.0.1\n"
@@ -48,10 +48,10 @@ msgstr "Ezläw"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Ezläw"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Äydä"
@@ -130,9 +130,9 @@ msgstr "Biremlek açıqlaması:"
msgid "Table comments"
msgstr "Tüşämä açıqlaması"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Tüşämä açıqlaması"
msgid "Column"
msgstr "Alan iseme"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Alan iseme"
msgid "Type"
msgstr "Töre"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "Bonı belän bäyläneş:"
msgid "Comments"
msgstr "Açıqlama"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "Açıqlama"
msgid "No"
msgstr "Yuq"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -335,8 +336,8 @@ msgstr "Çikläwlär östise"
msgid "Switch to copied database"
msgstr "Kübäytelgän biremlekkä küçäse"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -509,8 +510,8 @@ msgstr "%s biremlegenä SQL-soraw:"
msgid "Submit Query"
msgstr "Sorawnı Yulla"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -612,7 +613,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "İreşep Bulmadı"
@@ -738,8 +739,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -758,7 +759,7 @@ msgstr "Bäyläneşlär"
msgid "Sum"
msgstr "Sum"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "Bu MySQL-serverdä %s digän saqlaw ısulı töp bularaq saylanğan."
@@ -807,8 +808,8 @@ msgstr "Bastıru küreneşe"
msgid "Empty"
msgstr "Buşat"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -889,9 +890,9 @@ msgstr ""
msgid "Status"
msgstr "Torış"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -990,8 +991,8 @@ msgstr "Eçtälege \"%s\" biremenä saqlandı."
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1171,11 +1172,11 @@ msgstr "Saylanğan qullanuçı beterü"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Tözätü"
@@ -1800,224 +1801,12 @@ msgstr "totıla"
msgid "Second"
msgstr "sekund sayın"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr ""
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-#, fuzzy
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Törle buluı bar. YBS 3.11 qarísı"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Açqıç bilgelänmäde!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Tezeşlär"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Qabatsız"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Qabatlanu sanı"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Açıqlama"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Töp açqıç beterelde"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "\"%s\" digän tezeş salındı"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Biremleklär"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Xata"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Kertemnär sayladı"
-msgstr[1] "Kertemnär sayladı"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Kertemnär sayladı"
-msgstr[1] "Kertemnär sayladı"
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Berär genä dä tüşämä yuq"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-msgid "There are no recent tables"
-msgstr "Tüşämä tikşerü"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Bu saqlaw engine öçen xälät turında centekle belem yuq."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "Bu MySQL serverdä %s bar."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "Bu MySQL serverdä %s sünderelgän bulğan."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Bu MySQL server %s saqlaw enginen totmí."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Yaraqsız biremlek"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Tüşämä adı yaraqsız"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "%1$s atlı tüşämä adın %2$s itep üzgärtep bulmadı"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "\"%s\" tüşämäse \"%s\" itep ataldı"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "%s digän tışlaw sürätläre urınlaşqan yul tabılmadı!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "bonı sayla"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "%s digän töp tışlaw tabılmadı!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "%s digän tışlaw tabılmadı!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "%s digän tışlaw urınlaşqan yul tabılmadı!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Totaşa almím: yaraqsız köyläwlär."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "%s siña İsäñme di"
@@ -2025,8 +1814,8 @@ msgstr "%s siña İsäñme di"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
@@ -2041,56 +1830,56 @@ msgstr ""
"sersüzlär tikäserep, alarnı MySQL idäräçese birgän mäğlümät belän çağıştırıp "
"qarísı qala."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Kereş"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin qullanması"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Server"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Atama:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Sersüz:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Server Saylaw"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Cookies must be enabled past this point."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Kimendä %s sekund eşlämi tordıq, şuña kürä yañadan keräse"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "MySQL servergä totaşılıp bulmadı"
@@ -2131,6 +1920,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "MySQL-totaşunıñ tezü cayı"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Xata"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2183,6 +1980,11 @@ msgstr "Tüşämä"
msgid "Data"
msgstr "Eçtälek"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Tezeşlär"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2214,13 +2016,13 @@ msgstr "Xoquqlar tikşerü"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2470,85 +2272,8 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Yabılmağan cäyä"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Tözeleş"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Tözeleşen dä, eçtälegen dä"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Tulayım östise"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Kiñäytep östise"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
+#: libraries/Config.class.php:1190
+msgid "Font size"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -3223,6 +2948,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Biremleklär"
+
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4771,6 +4502,87 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Yabılmağan cäyä"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Tözeleş"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Tözeleşen dä, eçtälegen dä"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Tulayım östise"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Kiñäytep östise"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4838,6 +4650,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "Yaña qullanuçı östäw"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Bu server endäşmi"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4910,9 +4739,9 @@ msgstr "Ozınlıq/Bäyä*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4970,6 +4799,12 @@ msgstr "Soraw töre"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Açıqlama"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -5031,23 +4866,6 @@ msgid ""
"3.11[/a]"
msgstr "Törle buluı bar. YBS 3.11 qarísı"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Bu server endäşmi"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5213,8 +5031,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:275
@@ -5967,8 +5785,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6286,6 +6104,43 @@ msgstr "Qaraş"
msgid "Export contents"
msgstr "Çığaru ısulı"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+#, fuzzy
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Törle buluı bar. YBS 3.11 qarísı"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6303,42 +6158,6 @@ msgstr "SQL qaytarışı"
msgid "Generated by"
msgstr "Ürçätkeç:"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Biremleklär yuq"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "Biremleklär yuq"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6401,6 +6220,42 @@ msgstr "Alan iseme"
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Biremleklär yuq"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "Biremleklär yuq"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6425,6 +6280,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Açqıç bilgelänmäde!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Qabatsız"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Qabatlanu sanı"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Töp açqıç beterelde"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "\"%s\" digän tezeş salındı"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6437,6 +6326,29 @@ msgstr "Buş"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Kertemnär sayladı"
+msgstr[1] "Kertemnär sayladı"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Kertemnär sayladı"
+msgstr[1] "Kertemnär sayladı"
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6679,6 +6591,22 @@ msgstr ""
msgid "This format has no options"
msgstr "Bu tözeleşeneñ köyläneşe yuq"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Berär genä dä tüşämä yuq"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+msgid "There are no recent tables"
+msgstr "Tüşämä tikşerü"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "OK tügel"
@@ -7068,64 +6996,6 @@ msgstr ""
msgid "Target database"
msgstr "Biremlektä ezläw: "
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "%s digän serverdä SQL-soraw eşlätü"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "%s biremlegendä eşlätäse SQL-soraw"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Täqwim"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Alan iseme"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Bu SQL-sorawğa tamğa quy"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Şulay uq atalğan bitbilgelärne almaştırası"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Bu sorawnı, täräzä tışında bulğanı belän almaştırası tügel"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Bu sorawnı qabat kürsätäse"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Kürep kenä"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "SQL-ämerlege belän birem yökläw"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web-server'neñ yökläw törgäge"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7188,14 +7058,114 @@ msgstr "Tanıtması Yaraqsız"
msgid "Unknown Punctuation String"
msgstr "Unknown Punctuation String"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "%s digän serverdä SQL-soraw eşlätü"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "%s biremlegendä eşlätäse SQL-soraw"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Täqwim"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Alan iseme"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Bu SQL-sorawğa tamğa quy"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Şulay uq atalğan bitbilgelärne almaştırası"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Bu sorawnı, täräzä tışında bulğanı belän almaştırası tügel"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Bu sorawnı qabat kürsätäse"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Kürep kenä"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "SQL-ämerlege belän birem yökläw"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web-server'neñ yökläw törgäge"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
"The SQL validator could not be initialized. Please check if you have "
"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."
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Bu saqlaw engine öçen xälät turında centekle belem yuq."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "Bu MySQL serverdä %s bar."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "Bu MySQL serverdä %s sünderelgän bulğan."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Bu MySQL server %s saqlaw enginen totmí."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Yaraqsız biremlek"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Tüşämä adı yaraqsız"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "%1$s atlı tüşämä adın %2$s itep üzgärtep bulmadı"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "\"%s\" tüşämäse \"%s\" itep ataldı"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
@@ -7326,6 +7296,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Yaña qullanuçı östäw"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "%s digän tışlaw sürätläre urınlaşqan yul tabılmadı!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "bonı sayla"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "%s digän töp tışlaw tabılmadı!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "%s digän tışlaw tabılmadı!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "%s digän tışlaw urınlaşqan yul tabılmadı!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8417,8 +8419,8 @@ msgstr "Bu qullanuçılar kebek atalğan biremleklärne beterä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 "
diff --git a/po/ug.po b/po/ug.po
index 9cb105ba69..45d7063734 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-08-26 11:59+0200\n"
"Last-Translator: \n"
"Language-Team: Uyghur \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: Pootle 2.0.5\n"
@@ -50,10 +50,10 @@ msgstr "ئىزدەش"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -66,18 +66,18 @@ msgstr "ئىزدەش"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "ئىجرا قىلىش"
@@ -132,9 +132,9 @@ msgstr "ساندان ئىزاھاتى:"
msgid "Table comments"
msgstr "جەدۋەل ئىزاھى"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "جەدۋەل ئىزاھى"
msgid "Column"
msgstr "سۆزلەم"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "سۆزلەم"
msgid "Type"
msgstr "تۈرى"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,12 +198,13 @@ msgstr "ئۇلانما"
msgid "Comments"
msgstr "ئىزاھلار"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +215,17 @@ msgstr "ئىزاھلار"
msgid "No"
msgstr "يوق"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -332,8 +333,8 @@ msgstr "مەجبۇرى قوشۇش"
msgid "Switch to copied database"
msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -348,8 +349,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن "
-"%sبۇ يەرنى كۆرۈڭ%s."
+"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %"
+"sبۇ يەرنى كۆرۈڭ%s."
#: db_operations.php:600
#, fuzzy
@@ -498,8 +499,8 @@ msgstr "SQL ئىجرا بولۋاتقان ساندان %s:"
msgid "Submit Query"
msgstr "تاپشۇرۇش"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -602,7 +603,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "رەت قىلىندى"
@@ -724,8 +725,8 @@ msgstr "ئىزلاش ئاكتىپ ئەمەس"
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -743,7 +744,7 @@ msgstr "كۆچۈرۈش"
msgid "Sum"
msgstr "جەمئىي"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s بولسا MySQL مۇلازىمىتېرنىڭ ساقلاش ئەندىزە موتۇرى"
@@ -792,8 +793,8 @@ msgstr "بېسىپ كۆرسىتىش"
msgid "Empty"
msgstr "تازىلاش"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -868,9 +869,9 @@ msgstr "يېڭلاش"
msgid "Status"
msgstr "ھالەت"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -964,8 +965,8 @@ msgstr "%s ھۆججىتىدە ساقلاندى."
#: import.php:58
#, 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."
msgstr ""
"سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش "
"چارىسىنى كۆرۈڭ."
@@ -1154,11 +1155,11 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "تەھىرلەش"
@@ -1727,225 +1728,12 @@ msgstr "مىنۇت"
msgid "Second"
msgstr "سېكنۇت"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "خەتنىڭ چوڭ-كىچىكلىكى"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"سىز يۈكلىگەن ھۆججەت php.ini نىڭ ئىچىدىكى upload_max_filesize چەكلىمىسىدىن "
-"ئېشىپ كەتتى."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr "سز يۈكلىگەن ھۆججەت HTML نىڭ MAX_FILE_SIZE چېكىدىن ئېشىپ كەتتى."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "سىز يۈكلىگەن ھۆججەتنىڭ پەقەت بىر قىسىمىلا يۈكلەندى."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "ۋاقىتلىق ھۆججەت ساقلاش مۇندەرىجىسى تىپىلمىدى."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "ھۆججەتنى دېسكىغا يىزىشتا خاتالىق كۆرۈلدى."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "كېڭەيتىلمە ئىسمى بۇنداق ھۆججەتلەرنى يوللاشقا بولمايدۇ."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "ھۆججەت يۈكلەشتە ئېنىقسىز خاتالىق كۆرۈلدى."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "index قىممىتى بەلگىلەنمىگەن!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "تېزىسلار"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "بىردىنبىر"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "ئىخچام"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "تۈپ سان"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "ئىزاھات"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "ئاساسىي قىممەت ئۆچۈرۈلدى"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "ئۆچۈرۈلگەن تېزىسلار %s"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "ساندان"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "خاتالىق"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d row affected."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d row deleted."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d قۇر قوشۇلدى."
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: %1$s"
-msgid "Could not save recent table"
-msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى."
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Tracked tables"
-msgid "Recent tables"
-msgstr "ئىزلانغان جەدۋەل"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "Tracked tables"
-msgid "There are no recent tables"
-msgstr "ئىزلانغان جەدۋەل"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "بۇ ساقلىغۇچقا مۇناسىۋەتلىك باشقا ئۇچۇرلار مەۋجۇت ئەمەس."
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە بولىدۇ."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە بولمايدۇ."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "بۇ MySQL مۇلازىمىتېرى %s نى قوللىمايدۇ."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "ئۈنۈمسىز ساندان"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "ئۈنۈمسىز جەدۋەل ئىسمى"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىشتە خاتالىق كۆرۈلدى."
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىش غەلبىلىك بولدى."
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "No valid image path for theme %s found!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "ئالدىن كۆرگىنى بولمايدۇ."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "ئېلىش"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "ئۇسلۇپ ئەندىزسى %s تېپىلمىدى!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "تېما %s تېپىلمىدى!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "ماۋزۇ %s تېپىلمىدى."
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "ئۇلىنالمىدى: ئۈنۈمسىز تەڭشەك."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "%s خۇش كەلدىڭىز"
@@ -1953,11 +1741,11 @@ msgstr "%s خۇش كەلدىڭىز"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
msgid ""
@@ -1971,56 +1759,56 @@ msgstr ""
"configuration and make sure that they correspond to the information given by "
"the administrator of the MySQL server."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "كىرىش"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin ھۆججىتى"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "You can enter hostname/IP address and port separated by space."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "مۇلازىمىتېر:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "ئابۇنىت ئىسمى:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "شىفىر"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "مۇلازىمىتېر تاللاش"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Cookies نى قوزغاتقاندىن كېيىن ئاندىن كېرىڭ."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "پارولسىز كىرىش چەكلەنگەن (پارولسىز كىرىش ئىقازىتىنى كۆرۈڭ)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "No activity within %s seconds; please log in again"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "MySQL مۇلازىمىتېرىغا ئۇلىنالمىدى."
@@ -2061,6 +1849,14 @@ msgstr "PBMS خاتالىقى"
msgid "PBMS connection failed:"
msgstr "PBMS ئۇلىنالمىدى:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "خاتالىق"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2113,6 +1909,11 @@ msgstr ""
msgid "Data"
msgstr "سانلىق مەلۇمات"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "تېزىسلار"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2142,13 +1943,13 @@ msgstr ""
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not load default configuration from: %1$s"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى."
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2392,79 +2193,9 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr ""
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr ""
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "تۈزۈلىشى ۋە ئۇچۇر"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr ""
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr ""
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "خەتنىڭ چوڭ-كىچىكلىكى"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3109,6 +2840,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "ساندان"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4608,6 +4345,80 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr ""
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr ""
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "تۈزۈلىشى ۋە ئۇچۇر"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr ""
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr ""
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4676,6 +4487,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "مەجبۇرى قوشۇش"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr "تەڭشەك ھۆججىتى ئىچىدىكى ئىشلەنكۈچى ئۇلۈنما كونتىرولى مەغلۇب بولدى."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "مۇلازىمىتېردا ئىنكاس يوق"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(يەرلىك MySQL مۇلازىمىتېرى توغرا تەڭشەلمىگەن)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "تەپسىلاتلار..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4750,9 +4578,9 @@ msgstr ""
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4807,6 +4635,11 @@ msgstr "تۈرگە قايتىش"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "ئىزاھات"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4871,23 +4704,6 @@ msgstr ""
"ئېنىقسىزلىك بولۇشى مۇمكىن. [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a] غا قاراڭ."
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr "تەڭشەك ھۆججىتى ئىچىدىكى ئىشلەنكۈچى ئۇلۈنما كونتىرولى مەغلۇب بولدى."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "مۇلازىمىتېردا ئىنكاس يوق"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(يەرلىك MySQL مۇلازىمىتېرى توغرا تەڭشەلمىگەن)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "تەپسىلاتلار..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5047,8 +4863,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:275
@@ -5775,8 +5591,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6083,6 +5899,46 @@ msgstr "قاراش"
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"سىز يۈكلىگەن ھۆججەت php.ini نىڭ ئىچىدىكى upload_max_filesize چەكلىمىسىدىن "
+"ئېشىپ كەتتى."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr "سز يۈكلىگەن ھۆججەت HTML نىڭ MAX_FILE_SIZE چېكىدىن ئېشىپ كەتتى."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "سىز يۈكلىگەن ھۆججەتنىڭ پەقەت بىر قىسىمىلا يۈكلەندى."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "ۋاقىتلىق ھۆججەت ساقلاش مۇندەرىجىسى تىپىلمىدى."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "ھۆججەتنى دېسكىغا يىزىشتا خاتالىق كۆرۈلدى."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "كېڭەيتىلمە ئىسمى بۇنداق ھۆججەتلەرنى يوللاشقا بولمايدۇ."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "ھۆججەت يۈكلەشتە ئېنىقسىز خاتالىق كۆرۈلدى."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6100,40 +5956,6 @@ msgstr ""
msgid "Generated by"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6195,6 +6017,40 @@ msgstr ""
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6219,6 +6075,42 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "index قىممىتى بەلگىلەنمىگەن!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "بىردىنبىر"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "ئىخچام"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "تۈپ سان"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "ئاساسىي قىممەت ئۆچۈرۈلدى"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "ئۆچۈرۈلگەن تېزىسلار %s"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6229,6 +6121,24 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d row affected."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d row deleted."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d قۇر قوشۇلدى."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6469,6 +6379,24 @@ msgstr ""
msgid "This format has no options"
msgstr ""
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: %1$s"
+msgid "Could not save recent table"
+msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى."
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Tracked tables"
+msgid "Recent tables"
+msgstr "ئىزلانغان جەدۋەل"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "Tracked tables"
+msgid "There are no recent tables"
+msgstr "ئىزلانغان جەدۋەل"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr ""
@@ -6850,6 +6778,57 @@ msgstr ""
msgid "Target database"
msgstr ""
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sql_query_form.lib.php:223
#, php-format
msgid "Run SQL query/queries on server %s"
@@ -6905,57 +6884,6 @@ msgstr "يىزىق ھۆججەتنىڭ ئورنى"
msgid "web server upload directory"
msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى"
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6963,6 +6891,48 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "بۇ ساقلىغۇچقا مۇناسىۋەتلىك باشقا ئۇچۇرلار مەۋجۇت ئەمەس."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە بولىدۇ."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە بولمايدۇ."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "بۇ MySQL مۇلازىمىتېرى %s نى قوللىمايدۇ."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "ئۈنۈمسىز ساندان"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "ئۈنۈمسىز جەدۋەل ئىسمى"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىشتە خاتالىق كۆرۈلدى."
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىش غەلبىلىك بولدى."
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7067,6 +7037,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr ""
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "No valid image path for theme %s found!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "ئالدىن كۆرگىنى بولمايدۇ."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "ئېلىش"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "ئۇسلۇپ ئەندىزسى %s تېپىلمىدى!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "تېما %s تېپىلمىدى!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "ماۋزۇ %s تېپىلمىدى."
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7322,8 +7324,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن "
-"%sبۇ يەرنى كۆرۈڭ%s."
+"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %"
+"sبۇ يەرنى كۆرۈڭ%s."
#: main.php:314
msgid ""
@@ -8054,8 +8056,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 ""
#: server_privileges.php:1764
diff --git a/po/uk.po b/po/uk.po
index 7ec825cdd8..8d26ec012e 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-06-17 10:55+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: ukrainian \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: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -49,10 +49,10 @@ msgstr "Шукати"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Шукати"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Вперед"
@@ -133,9 +133,9 @@ msgstr "Коментар бази даних: "
msgid "Table comments"
msgstr "Коментар до таблиці"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "Коментар до таблиці"
msgid "Column"
msgstr "Стовпчик"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "Стовпчик"
msgid "Type"
msgstr "Тип"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,12 +199,13 @@ msgstr "Лінки до"
msgid "Comments"
msgstr "Коментарі"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +216,17 @@ msgstr "Коментарі"
msgid "No"
msgstr "Ні"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -333,8 +334,8 @@ msgstr "Додати constraints"
msgid "Switch to copied database"
msgstr "Перейти до скопійованої бази даних"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -499,8 +500,8 @@ msgstr "SQL-запит до БД %s:"
msgid "Submit Query"
msgstr "Виконати запит"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -604,7 +605,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Доступ заборонено"
@@ -727,8 +728,8 @@ msgstr "Трекінг не активний."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -746,7 +747,7 @@ msgstr ""
msgid "Sum"
msgstr "Всього"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
@@ -795,8 +796,8 @@ msgstr "Версія для друку"
msgid "Empty"
msgstr "Очистити"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -873,9 +874,9 @@ msgstr ""
msgid "Status"
msgstr "Статус"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -969,8 +970,8 @@ msgstr "Dump збережено у файл %s."
#: import.php:58
#, 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."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1140,11 +1141,11 @@ msgstr "Видалити відмічених користувачів"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Редагувати"
@@ -1693,218 +1694,12 @@ msgstr "Хвилина"
msgid "Second"
msgstr "Секунда"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr ""
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Індекс не визначено!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Індекси"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Унікальне"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Кількість елементів"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr ""
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Первинний ключ було знищено"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Індекс %s було знищено"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Бази Даних"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Помилка"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Select Tables"
-msgid "Recent tables"
-msgstr "Вибрати таблиці"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Таблицю %s було перейменовано в %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "Ласкаво просимо до %s"
@@ -1912,8 +1707,8 @@ msgstr "Ласкаво просимо до %s"
#: libraries/auth/config.auth.lib.php:106
#, 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/auth/config.auth.lib.php:115
@@ -1928,56 +1723,56 @@ msgstr ""
"config.inc.php та впевнитися, що вони відповідають даним отриманим Вами від "
"адміністратора MySQL сервера."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Вхід в систему"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "Документація по phpMyAdmin"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Ім'я користувача:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Пароль:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Вибір сервера"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "З цього моменту Cookies повинні бути дозволені."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "Не можу зареєструватися на MySQL сервері"
@@ -2016,6 +1811,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Помилка"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2068,6 +1871,11 @@ msgstr "Таблиць"
msgid "Data"
msgstr "Дані"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Індекси"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2095,13 +1903,13 @@ msgid "Check Privileges"
msgstr "Перевірити права"
#: libraries/common.inc.php:587
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr ""
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2346,78 +2154,8 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Не закриті лапки"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr ""
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "структура і дані"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "повні вставки"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "розширені вставки"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
+#: libraries/Config.class.php:1190
+msgid "Font size"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -3052,6 +2790,12 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Бази Даних"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4525,6 +4269,80 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Не закриті лапки"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr ""
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "структура і дані"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "повні вставки"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "розширені вставки"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4591,6 +4409,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "Додати нового користувача"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4663,9 +4498,9 @@ msgstr "Довжини/Значення*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4722,6 +4557,11 @@ msgstr "Тип запиту"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr ""
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4782,23 +4622,6 @@ msgid ""
"3.11[/a]"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4939,8 +4762,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:275
@@ -5656,8 +5479,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -5963,6 +5786,42 @@ msgstr ""
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5980,40 +5839,6 @@ msgstr "SQL result"
msgid "Generated by"
msgstr "Згенеровано"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6075,6 +5900,40 @@ msgstr "Назви колонок"
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6097,6 +5956,40 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Індекс не визначено!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Унікальне"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Кількість елементів"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Первинний ключ було знищено"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Індекс %s було знищено"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6109,6 +6002,27 @@ msgstr "Немає"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6351,6 +6265,20 @@ msgstr ""
msgid "This format has no options"
msgstr "Цей формат не має опцій"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Recent tables"
+msgstr "Вибрати таблиці"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "не OK"
@@ -6740,63 +6668,6 @@ msgstr ""
msgid "Target database"
msgstr ""
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Виконати SQL запит(и) до БД %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Назви колонок"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Закладка на даний SQL-запит"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Не перекривати цей запит в інших вікнах"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Показати даний запит знову "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Лише перегляд"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "вкажіть розташування текстового файлу"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "каталог веб-сервера для завантаження файлів (upload directory)"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6861,6 +6732,63 @@ msgstr "Некоректний ідентифікатор"
msgid "Unknown Punctuation String"
msgstr "Невідомий символ пунктуації"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Виконати SQL запит(и) до БД %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Назви колонок"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Закладка на даний SQL-запит"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Не перекривати цей запит в інших вікнах"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Показати даний запит знову "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Лише перегляд"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "вкажіть розташування текстового файлу"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "каталог веб-сервера для завантаження файлів (upload directory)"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6870,6 +6798,48 @@ msgstr ""
"Не можу запустити перевірку SQL. Прошу проконтролювати чи інстальовані "
"необхідні PHP extensions як описано в %sдокументації%s."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Таблицю %s було перейменовано в %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -6911,8 +6881,8 @@ msgid ""
"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"
#: libraries/tbl_properties.inc.php:144
msgid "Transformation options"
@@ -6994,6 +6964,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Додати нового користувача"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8048,8 +8050,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. Зміст цієї таблиці може відрізнятися від прав, які використовуються "
@@ -10292,8 +10294,8 @@ msgstr ""
#~ "Query statistics: Since its startup, %s queries have been sent to "
#~ "the server."
#~ msgstr ""
-#~ "Статистика запитів: З моменту запуску, до сервера було надіслано "
-#~ "%s запитів."
+#~ "Статистика запитів: З моменту запуску, до сервера було надіслано %"
+#~ "s запитів."
#~ msgid "Chart generated successfully."
#~ msgstr "Права успішно перезавантажено."
diff --git a/po/ur.po b/po/ur.po
index 2f20a49c38..5d94543b08 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-04-23 08:37+0200\n"
"Last-Translator: Mehbooob Khan \n"
"Language-Team: Urdu \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: Pootle 2.0.5\n"
@@ -50,10 +50,10 @@ msgstr "تلاش"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -66,18 +66,18 @@ msgstr "تلاش"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "جائیں"
@@ -135,9 +135,9 @@ msgstr "کوائفیہ تبصرہ:"
msgid "Table comments"
msgstr "جدول تبصرے"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -148,12 +148,12 @@ msgstr "جدول تبصرے"
msgid "Column"
msgstr "کالم"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -163,9 +163,9 @@ msgstr "کالم"
msgid "Type"
msgstr "قِسم"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -203,12 +203,13 @@ msgstr "ربط بطرف"
msgid "Comments"
msgstr "تبصرہ"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -219,17 +220,17 @@ msgstr "تبصرہ"
msgid "No"
msgstr "نہیں"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -337,8 +338,8 @@ msgstr "پابندیاں لگائیں"
msgid "Switch to copied database"
msgstr "نقل شدہ کوائفیہ پر جائیں"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -503,8 +504,8 @@ msgstr "کوائفیہ کے لیے %s SQL طلب"
msgid "Submit Query"
msgstr "طلب بھیجیں"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -611,7 +612,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "رسائی نہیں دی گئی"
@@ -732,8 +733,8 @@ msgstr "کھوج غیر فعال ہے۔"
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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."
@@ -752,7 +753,7 @@ msgstr "چربہ کاری"
msgid "Sum"
msgstr "مجموعہ"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%sاس MySQL سرور میں طے شدہ ذخیرہ انجن ہے۔"
@@ -801,8 +802,8 @@ msgstr "چھپائی منظر"
msgid "Empty"
msgstr "خالی"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -879,9 +880,9 @@ msgstr "تازہ کی گئی"
msgid "Status"
msgstr "حالت"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -975,11 +976,11 @@ msgstr "ڈمپ اس مسل %s میں محفوظ ہوچکی ہے۔"
#: import.php:58
#, 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."
msgstr ""
-"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے "
-"%sdocumentation%s دیکھیں۔"
+"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے %"
+"sdocumentation%s دیکھیں۔"
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1162,11 +1163,11 @@ msgstr "منتخب صارفین ہٹائے جارہے ہیں"
msgid "Close"
msgstr "بند کریں"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "تدوین"
@@ -1458,8 +1459,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:166
@@ -1719,227 +1720,12 @@ msgstr "منٹ"
msgid "Second"
msgstr "سیکنڈ"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "فانٹ سائز"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"اپ لوڈ مسل نے php.ini میں موجود upload_max_filesize ہدایات سے تجاوز کی۔"
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr "اپ لوڈ مسل نے HTML فارم میں مخصوص MAX_FILE_SIZE ہدایات سے تجاوز کی۔"
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "اپ لوڈ کی گئی مسل صرف جزوی اپ لوڈ ہوا ہے۔"
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "ایک عارضی پوشہ موجود نہیں ہے۔"
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "ڈسک پر مسل تحریر ناکام ہوا۔"
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "مسل قسم کی وجہ سے اپ لوڈ روکا گیا۔"
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "اپ لوڈ مسل میں نامعلوم نقص ہے۔"
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"اپ لوڈ مسل کو بڑھاتے ہوئے نقص ہے, دیکھیں [a@./Documentation."
-"html#faq1_11@Documentation]عمومی سوالات 1.11[/a]"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "کوئی اشاریہ موجود نہیں!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "اشاریے"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "منفرد"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "باندھنا"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "درجہ تعلق داری"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "تبصرہ"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "بنیادی کلید چھوڑ دیا گیا ہے"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "اشاریہ %s چھوڑ دیا گیا ہے"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"اشاریے %1$s اور %2$s مساوی نظر آتے ہیں اور ان میں ایک ممکنہ طور پر ہٹا دیا "
-"جائے گا۔"
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "کوائفیے"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "نقص"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d صف مناثر ہوئے۔"
-msgstr[1] "%1$d صفیں متاثر ہوئیں۔"
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d صف حذف ہوئے۔"
-msgstr[1] "%1$d صفیں حذف ہوئیں۔"
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d صف داخل ہوئی۔"
-msgstr[1] "%1$d صفیں داخل ہوئیں۔"
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not open file: %s"
-msgid "Could not save recent table"
-msgstr "مسل نہیں کھول سکتا: %s"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "حداول کی گنتی کریں"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no files to upload"
-msgid "There are no recent tables"
-msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "اس ذخیرہ انجن کے متعلق تفصیلی معلومات موجود نہیں ہیں۔"
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s اس MySQL سرور میں دستیاب ہے۔"
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s اس MySQL سرور کے لیے نااہل ہے۔"
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "یہMySQL سرور میں %s اس ذخیرہ انجن کی معاونت نہیں ہے۔"
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "غلط کوائفیہ"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "غلط جدول نام"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "جدول %1$s کو %2$s نام تبدیل کرتے ہوئے نقص ہے"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "جدول%s نام %s میں تبدیل ہوچکا ہے"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "اس خیالیہ %s کے لیے درست راہ نہیں ملا!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "کوئی پیش منظر دستیاب نہیں ہے۔"
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "اسے لیں"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "طے شدہ خیالیہ %s نہیں ملا!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "خیالیہ %s نیہں ملا!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "خیالیہ راہ اس خیالیہ %s کے لیے نہیں ملا!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "جڑ نہیں سکتا: غلط ترتیبات۔"
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "%s میں خوش آمدید"
@@ -1947,8 +1733,8 @@ msgstr "%s میں خوش آمدید"
#: libraries/auth/config.auth.lib.php:106
#, 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 کو "
"استعمال کرتے ہوئے بنانا چاہتے ہیں۔"
@@ -1964,56 +1750,56 @@ msgstr ""
"ہوسٹ، صارف نام، پاس ورڈ کو اپنے تشکیل میں پڑتال کریں اور اثبات کریں کہ دی "
"گئی معلومات MySQL سرور منتظم نے دیے ہیں۔"
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "لاگ ان"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin دستاویز"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "آپ ہوسٹ نام یا IP پتا اور دہانہ وقفوں سے جدا کرکے داخل کرسکتے ہیں۔"
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "سرور:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "صارف نام:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "پاس ورڈ:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "سرور انتخاب"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "اس جگہ کوکی لازمی اہل ہوں۔"
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "پاس ورڈ کے بغیر لاگ ان تشکیل میں ممنوع ہے (دیکھیں AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "%s سیکنڈ میں کوئی سرگرمی نہیں ہوئی، دوبارہ لاگ ان کریں۔"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "MySQL سرور میں لاگ ان نہیں کرسکتا"
@@ -2052,6 +1838,14 @@ msgstr "PBMS نقص"
msgid "PBMS connection failed:"
msgstr "PBMS جڑت ناکام ہوا:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "نقص"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS حاصل کریں BLOB معلومات ناکام ہوا:"
@@ -2104,6 +1898,11 @@ msgstr "جداول"
msgid "Data"
msgstr "کوائف"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "اشاریے"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2133,13 +1932,13 @@ msgstr "استحقاق پڑتال کریں"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Configuration file"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "تشکیلی مسل"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2383,77 +2182,9 @@ msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "دونوں"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "کھولیں"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "بند ہوا"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "ساخت"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "کوائف"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "ساخت اور کوائف"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "سریع - تشکیل کے کم سے کم اختیارات دکھائیں"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "مخصوص - تشکیل کے تمام اختیارات دکھائیں"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "مخصوص - بالا ی طرح لیکن سریع/مخصوص انتخاب کے بغیر"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "داخل کرنا مکمل ہوا"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "توسیع شدہ داخلے"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "دونوں بالا"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "بالا میں سے کوئی بھی نہیں"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "فانٹ سائز"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3103,6 +2834,12 @@ msgstr "درآمد اور برآمد کے لیے پوشے اور سکڑاؤ اخ
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "کوائفیے"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "کوائفیہ دکھانے کے اختیارات"
@@ -4659,6 +4396,78 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "دونوں"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "کھولیں"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "بند ہوا"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "ساخت"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "کوائف"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "ساخت اور کوائف"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "سریع - تشکیل کے کم سے کم اختیارات دکھائیں"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "مخصوص - تشکیل کے تمام اختیارات دکھائیں"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "مخصوص - بالا ی طرح لیکن سریع/مخصوص انتخاب کے بغیر"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "داخل کرنا مکمل ہوا"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "توسیع شدہ داخلے"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "دونوں بالا"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "بالا میں سے کوئی بھی نہیں"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4728,6 +4537,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "نیا صارف اضافہ کریں"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4799,9 +4625,9 @@ msgstr ""
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4856,6 +4682,11 @@ msgstr "سلامتی"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "تبصرہ"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4916,23 +4747,6 @@ msgid ""
"3.11[/a]"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5083,8 +4897,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:275
@@ -5791,8 +5605,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6081,6 +5895,45 @@ msgstr "ویو"
msgid "Export contents"
msgstr ""
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"اپ لوڈ مسل نے php.ini میں موجود upload_max_filesize ہدایات سے تجاوز کی۔"
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr "اپ لوڈ مسل نے HTML فارم میں مخصوص MAX_FILE_SIZE ہدایات سے تجاوز کی۔"
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "اپ لوڈ کی گئی مسل صرف جزوی اپ لوڈ ہوا ہے۔"
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "ایک عارضی پوشہ موجود نہیں ہے۔"
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "ڈسک پر مسل تحریر ناکام ہوا۔"
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "مسل قسم کی وجہ سے اپ لوڈ روکا گیا۔"
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "اپ لوڈ مسل میں نامعلوم نقص ہے۔"
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"اپ لوڈ مسل کو بڑھاتے ہوئے نقص ہے, دیکھیں [a@./Documentation."
+"html#faq1_11@Documentation]عمومی سوالات 1.11[/a]"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6100,40 +5953,6 @@ msgstr ""
msgid "Generated by"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6195,6 +6014,40 @@ msgstr ""
msgid "This plugin does not support compressed imports!"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6217,6 +6070,42 @@ msgid ""
"the issue and try again."
msgstr ""
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "کوئی اشاریہ موجود نہیں!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "منفرد"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "باندھنا"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "درجہ تعلق داری"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "بنیادی کلید چھوڑ دیا گیا ہے"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "اشاریہ %s چھوڑ دیا گیا ہے"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"اشاریے %1$s اور %2$s مساوی نظر آتے ہیں اور ان میں ایک ممکنہ طور پر ہٹا دیا "
+"جائے گا۔"
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6227,6 +6116,27 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d صف مناثر ہوئے۔"
+msgstr[1] "%1$d صفیں متاثر ہوئیں۔"
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d صف حذف ہوئے۔"
+msgstr[1] "%1$d صفیں حذف ہوئیں۔"
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d صف داخل ہوئی۔"
+msgstr[1] "%1$d صفیں داخل ہوئیں۔"
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6467,6 +6377,24 @@ msgstr ""
msgid "This format has no options"
msgstr ""
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not open file: %s"
+msgid "Could not save recent table"
+msgstr "مسل نہیں کھول سکتا: %s"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "حداول کی گنتی کریں"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "There are no recent tables"
+msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr ""
@@ -6848,6 +6776,57 @@ msgstr ""
msgid "Target database"
msgstr ""
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sql_query_form.lib.php:223
#, php-format
msgid "Run SQL query/queries on server %s"
@@ -6905,57 +6884,6 @@ msgstr ""
msgid "web server upload directory"
msgstr ""
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6963,6 +6891,48 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "اس ذخیرہ انجن کے متعلق تفصیلی معلومات موجود نہیں ہیں۔"
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s اس MySQL سرور میں دستیاب ہے۔"
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s اس MySQL سرور کے لیے نااہل ہے۔"
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "یہMySQL سرور میں %s اس ذخیرہ انجن کی معاونت نہیں ہے۔"
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "غلط کوائفیہ"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "غلط جدول نام"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "جدول %1$s کو %2$s نام تبدیل کرتے ہوئے نقص ہے"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "جدول%s نام %s میں تبدیل ہوچکا ہے"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7069,6 +7039,38 @@ msgstr ""
msgid "+ Add a new value"
msgstr ""
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "اس خیالیہ %s کے لیے درست راہ نہیں ملا!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "کوئی پیش منظر دستیاب نہیں ہے۔"
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "اسے لیں"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "طے شدہ خیالیہ %s نہیں ملا!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "خیالیہ %s نیہں ملا!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "خیالیہ راہ اس خیالیہ %s کے لیے نہیں ملا!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8050,8 +8052,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 ""
#: server_privileges.php:1764
diff --git a/po/uz.po b/po/uz.po
index 2668520600..26e3b227d7 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-07-22 02:31+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: uzbek_cyrillic \n"
-"Language: uz\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: uz\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -47,10 +47,10 @@ msgstr "Қидириш"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "Қидириш"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "OK"
@@ -131,9 +131,9 @@ msgstr "Маълумотлар базасига изоҳ:"
msgid "Table comments"
msgstr "Жадвал изоҳи"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "Жадвал изоҳи"
msgid "Column"
msgstr "Майдон номлари"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "Майдон номлари"
msgid "Type"
msgstr "Тур"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,12 +199,13 @@ msgstr "Алоқалар"
msgid "Comments"
msgstr "Изоҳлар"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +216,17 @@ msgstr "Изоҳлар"
msgid "No"
msgstr "Йўқ"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -337,8 +338,8 @@ msgstr "Чекловлар қўшиш"
msgid "Switch to copied database"
msgstr "Нусха олинган маълумотлар базасига ўтиш"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -512,8 +513,8 @@ msgstr "\"%s\" маълумотлар базасига SQL-сўров: "
msgid "Submit Query"
msgstr "сўровни бажариш"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -620,7 +621,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Рухсат берилмади"
@@ -748,8 +749,8 @@ msgstr "Кузатиш фаол эмас."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 қаранг."
@@ -769,7 +770,7 @@ msgstr "Репликация (захира нусха кўчириш)"
msgid "Sum"
msgstr "Жами"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "\"%s\" - MySQL серверидаги андозавий маълумотлар жадвали тури."
@@ -818,8 +819,8 @@ msgstr "Чоп этиш версияси"
msgid "Empty"
msgstr "Тозалаш"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -898,9 +899,9 @@ msgstr "Янгиланди"
msgid "Status"
msgstr "Ҳолат"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -994,11 +995,11 @@ msgstr "Дамп \"%s\" файлида сақланди."
#: import.php:58
#, 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."
msgstr ""
-"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари "
-"%sдокументацияда%s келтирилган."
+"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %"
+"sдокументацияда%s келтирилган."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1195,11 +1196,11 @@ msgstr "Белгиланган фойдаланувчиларни ўчириш"
msgid "Close"
msgstr "Ёпиш"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Таҳрирлаш"
@@ -1843,231 +1844,12 @@ msgstr "ишлатилмоқда"
msgid "Second"
msgstr "секундига"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Шрифт ўлчами"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Юкланаётган файл ҳажми PHP конфигурацион файлида (php.ini) кўрсатилган "
-"\"upload_max_filesize\" директиваси қийматидан катта!"
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Юкланаётган файл ҳажми HTML формада кўрсатилган \"MAX_FILE_SIZE\" "
-"директиваси қийматидан катта!"
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Юкланаётган файл фақатгина қисман юкланди."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Вақтинчалик файлларни сақлаш учун каталог топилмади."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Файлни дискка ёзишдахатолик юз берди."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Файлнинг юкланиши унинг кенгайтмаси сабали тўхтатилди."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Файл юкланаётган вақтда номаълум хатолик юз берди."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Юкланган файл жойини ўзгартиришда хатолик, [a@./Documentation."
-"html#faq1_11@Documentation]\"FAQ 1.11\"[/a]га қаранг"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Индекс белгиланмаган!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Индекслар"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Уникал"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Қисилган"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Элементлар сони"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Изоҳ"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Бирламчи калит ўчирилди"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr " \"%s\" индекси ўчирилди"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr " %1$s ва %2$s индекслари бир хил, улардан бирини ўчириш мумкин."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Маълумотлар базалари"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Хатолик"
-
-#: libraries/Message.class.php:260
-#, fuzzy, php-format
-#| msgid "%1$d row(s) affected."
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d та қаторларга таъсир этди."
-msgstr[1] "%1$d та қаторларга таъсир этди."
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "%1$d row(s) deleted."
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d та қаторлар ўчирилди."
-msgstr[1] "%1$d та қаторлар ўчирилди."
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "%1$d row(s) inserted."
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d та қаторлар қўйилди."
-msgstr[1] "%1$d та қаторлар қўйилди."
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Cannot load or save configuration"
-msgid "Could not save recent table"
-msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Жадвалларни санаш"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Биронта ҳам конфигурацияланган сервер мавжуд эмас"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Ушбу турдаги жадваллар ҳақида қўшимча маълумот мавжуд эмас. "
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олади."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "\"%s\" туридаги жадваллар ушбу MySQL серверда фаолсизлантирилган."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олмайди."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Нотўғри маълумотлар базаси"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Жадвал номи нотўғри"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "%1$s жадвалини %2$s деб қайта номлашда хатолик"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "`\"%s\"` жадвалининг номи `\"%s\"` деб ўзгартирилди."
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr " \"%s\" мавзуси расмларига тўғри йўл топилмади!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Олдиндан кўриш мумкин эмас."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "Тадбиқ қилиш"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr " \"%s\" асл мавзуси топилмади!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr " \"%s\" мавзуси топилмади!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr " \"%s\" мавзуси файлларига йўл топилмади!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Уланиб бўлмади: нотўғри созланган."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "\"%s\" дастурига хуш келибсиз"
@@ -2075,8 +1857,8 @@ msgstr "\"%s\" дастурига хуш келибсиз"
#: libraries/auth/config.auth.lib.php:106
#, 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 фойдаланишингиз мумкин."
@@ -2092,43 +1874,43 @@ msgstr ""
"файлидаги хост, фойдаланувчи ва паролни текширинг ва улар MySQL сервери "
"администраторидан олинган маълумотларга мос келишига ишонч ҳосил қилинг."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Авторизация"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin документацияси"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "Сиз хост/IP адрес ва бўш жой қолдириб портни киритишингиз мумкин."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Сервер"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Фойдаланувчи:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Парол:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Серверни танланг"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Браузерда \"cookies\" фаоллаштирилган бўлиши шарт."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -2136,7 +1918,7 @@ msgstr ""
"Паролсиз аутентификация конфигурация томонидан ўчирилган (қаранг "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -2144,8 +1926,8 @@ msgstr ""
"\"%s\" сония давомида фаоллик кузатилмади, илтимос, қайта авторизациядан "
"ўтинг. "
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "MySQL серверига уланиб бўлмади"
@@ -2188,6 +1970,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Саҳифа тузиб бўлмади"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Хатолик"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2240,6 +2030,11 @@ msgstr "Жадваллар"
msgid "Data"
msgstr "Маълумотлар"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Индекслар"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2275,13 +2070,13 @@ msgstr "Привилегияларни текшириш"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Cannot load or save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2538,85 +2333,9 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Close"
-msgid "Closed"
-msgstr "Ёпиш"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "тузилиш"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Тузилиши ва маълумотлари"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Тўла қўйиш"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Кенгайтирилган қўйилмалар"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Шрифт ўлчами"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3321,6 +3040,12 @@ msgstr "Импорт ва экспорт каталоглари ва қисиш
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Маълумотлар базалари"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Маълумотлар базаларини кўрсатиш афзалликлари"
@@ -4353,8 +4078,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:404
msgid "PDF schema: pages table"
@@ -4462,8 +4187,8 @@ msgstr "SSL уланишдан фойдаланиш"
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:423
msgid "PDF schema: table coordinates"
@@ -5053,6 +4778,86 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Нотўғри IP-адрес: \"%s\""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Close"
+msgid "Closed"
+msgstr "Ёпиш"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "тузилиш"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Тузилиши ва маълумотлари"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Тўла қўйиш"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Кенгайтирилган қўйилмалар"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -5123,6 +4928,25 @@ msgstr ""
msgid "Add a new Event"
msgstr "Янги фойдаланувчи қўшиш"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"\"config.inc.php\" конфигурацион файлининг \"controluser\" директивасида "
+"кўрсатилган фойдаланувчи ёрдамида уланиб бўлмади."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Сервер жавоб бермаяпти"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Тафсилотлар..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -5197,9 +5021,9 @@ msgstr "Узунлик/қийматлар"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -5258,6 +5082,11 @@ msgstr "Хавфсизлик"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Изоҳ"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5324,25 +5153,6 @@ msgstr ""
"Тахминий бўлиши мумкин. [a@./Documentation.html#faq3_11@Documentation]\"FAQ "
"3.11\"[/a]га қаранг"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"\"config.inc.php\" конфигурацион файлининг \"controluser\" директивасида "
-"кўрсатилган фойдаланувчи ёрдамида уланиб бўлмади."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Сервер жавоб бермаяпти"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Тафсилотлар..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5516,12 +5326,12 @@ msgstr ""
#| "happen: %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:275
msgid "use this for future exports"
@@ -6333,8 +6143,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6650,6 +6460,48 @@ msgstr "Намойиш"
msgid "Export contents"
msgstr "Таркибини экспорт қилиш"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Юкланаётган файл ҳажми PHP конфигурацион файлида (php.ini) кўрсатилган "
+"\"upload_max_filesize\" директиваси қийматидан катта!"
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Юкланаётган файл ҳажми HTML формада кўрсатилган \"MAX_FILE_SIZE\" "
+"директиваси қийматидан катта!"
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Юкланаётган файл фақатгина қисман юкланди."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Вақтинчалик файлларни сақлаш учун каталог топилмади."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Файлни дискка ёзишдахатолик юз берди."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Файлнинг юкланиши унинг кенгайтмаси сабали тўхтатилди."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Файл юкланаётган вақтда номаълум хатолик юз берди."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Юкланган файл жойини ўзгартиришда хатолик, [a@./Documentation."
+"html#faq1_11@Documentation]\"FAQ 1.11\"[/a]га қаранг"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6667,42 +6519,6 @@ msgstr "SQL сўрови натижаси"
msgid "Generated by"
msgstr "Тузилган"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-"Қуйидаги тузилишлар ё тузилди ё ўзгартирилди. Бу ерда сиз қуйидаги амалларни "
-"бажаришингиз мумкин:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Тузилмани кўриш учун унинг номи устига сичқонча тугмасини босинг"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "Қуйидаги танловларни ўзгартириш учун, \"Танловлар\" боғига босинг"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Тузилмани ўзгартириш учун, \"Тузилма\" боғига киринг"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Ушбу базага ўтиш"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "танловлар"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Ушбу жадвалга ўтиш"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Ушбу кўринишга ўтиш"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6767,6 +6583,42 @@ msgstr "Майдон номлари"
msgid "This plugin does not support compressed imports!"
msgstr "Ушбу модул қисилган маълумотларни импорт қила олмайди!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+"Қуйидаги тузилишлар ё тузилди ё ўзгартирилди. Бу ерда сиз қуйидаги амалларни "
+"бажаришингиз мумкин:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Тузилмани кўриш учун унинг номи устига сичқонча тугмасини босинг"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "Қуйидаги танловларни ўзгартириш учун, \"Танловлар\" боғига босинг"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Тузилмани ўзгартириш учун, \"Тузилма\" боғига киринг"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Ушбу базага ўтиш"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "танловлар"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Ушбу жадвалга ўтиш"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Ушбу кўринишга ўтиш"
+
#: libraries/import/ods.php:28
#, fuzzy
#| msgid "Import percentages as proper decimals (12.00% to .12)"
@@ -6800,6 +6652,40 @@ msgstr ""
"Кўрсатилган XML файл ё нотўғри тузилган ё чала. Уни тўғирлаб, қайта ҳаракат "
"қилиб кўринг."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Индекс белгиланмаган!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Уникал"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Қисилган"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Элементлар сони"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Бирламчи калит ўчирилди"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr " \"%s\" индекси ўчирилди"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr " %1$s ва %2$s индекслари бир хил, улардан бирини ўчириш мумкин."
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6812,6 +6698,30 @@ msgstr "Йўқ"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, fuzzy, php-format
+#| msgid "%1$d row(s) affected."
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d та қаторларга таъсир этди."
+msgstr[1] "%1$d та қаторларга таъсир этди."
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "%1$d row(s) deleted."
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d та қаторлар ўчирилди."
+msgstr[1] "%1$d та қаторлар ўчирилди."
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "%1$d row(s) inserted."
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d та қаторлар қўйилди."
+msgstr[1] "%1$d та қаторлар қўйилди."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -7056,6 +6966,24 @@ msgstr "Навигация ойнасини қайта юклаш"
msgid "This format has no options"
msgstr "Ушбу формат учун созланадиган параметр мавжуд эмас"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Could not save recent table"
+msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Жадвалларни санаш"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Биронта ҳам конфигурацияланган сервер мавжуд эмас"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Тайёр эмас"
@@ -7461,63 +7389,6 @@ msgstr "Фарқ"
msgid "Target database"
msgstr "Нишон база"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "\"%s\" серверида SQL-сўров(лар)ни бажариш "
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "\"%s\" маълумотлар базасида SQL-сўров(лар)ни бажариш"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Тозалаш"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Майдон номлари"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Ушбу SQL сўровига хатчўп тузиш"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Барча фойдаланувчиларга рухсат бериш"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Шу номли хатчўпни алмаштириш"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Сўровлар ойнаси ичидаги маълумотларни блокировка қилиш"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Тақсимловчи"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Ушбу сўровни қайта кўрсатиш"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Фақат кўриш"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Файлни танлаш"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "Юклаш каталогидан"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7580,6 +7451,63 @@ msgstr "Нотўғри идентификатор"
msgid "Unknown Punctuation String"
msgstr "Номаълум пунктуация"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "\"%s\" серверида SQL-сўров(лар)ни бажариш "
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "\"%s\" маълумотлар базасида SQL-сўров(лар)ни бажариш"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Тозалаш"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Майдон номлари"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Ушбу SQL сўровига хатчўп тузиш"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Барча фойдаланувчиларга рухсат бериш"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Шу номли хатчўпни алмаштириш"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Сўровлар ойнаси ичидаги маълумотларни блокировка қилиш"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Тақсимловчи"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Ушбу сўровни қайта кўрсатиш"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Фақат кўриш"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Файлни танлаш"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "Юклаш каталогидан"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7589,6 +7517,48 @@ msgstr ""
"SQL синтаксисини текшириб бўлмади. PHP учун зарур кенгайтмалар "
"ўрнатилганлигини текширинг, батафсил маълумот учун %sдокументацияга%s қаранг."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Ушбу турдаги жадваллар ҳақида қўшимча маълумот мавжуд эмас. "
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олади."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "\"%s\" туридаги жадваллар ушбу MySQL серверда фаолсизлантирилган."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олмайди."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Нотўғри маълумотлар базаси"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Жадвал номи нотўғри"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "%1$s жадвалини %2$s деб қайта номлашда хатолик"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "`\"%s\"` жадвалининг номи `\"%s\"` деб ўзгартирилди."
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Жадвал - бўш!"
@@ -7720,6 +7690,38 @@ msgstr "Бўлакларни (PARTITIONS) белгилаш"
msgid "+ Add a new value"
msgstr "Янги фойдаланувчи қўшиш"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr " \"%s\" мавзуси расмларига тўғри йўл топилмади!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Олдиндан кўриш мумкин эмас."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "Тадбиқ қилиш"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr " \"%s\" асл мавзуси топилмади!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr " \"%s\" мавзуси топилмади!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr " \"%s\" мавзуси файлларига йўл топилмади!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8886,8 +8888,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 привилегиялари жадвалидан олади. Ушбу жадвалдаги "
@@ -9897,8 +9899,8 @@ msgstr "Очиқ файллар сони."
#: server_status.php:934
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen"
-"()\" функцияси ёрдамида очилган файлга айтилади."
+"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()"
+"\" функцияси ёрдамида очилган файлга айтилади."
#: server_status.php:935
msgid "The number of tables that are open."
@@ -10535,9 +10537,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
-#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
-#| "[/kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
+#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
+#| "kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
@@ -11474,8 +11476,8 @@ msgstr "Кўриниш номини ўзгартириш"
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr ""
-#~ "Тахминий бўлиши мумкин. [a@./Documentation."
-#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]га қаранг"
+#~ "Тахминий бўлиши мумкин. [a@./Documentation.html#faq3_11@Documentation]"
+#~ "\"FAQ 3.11\"[/a]га қаранг"
#~ msgid "Bar type"
#~ msgstr "Сўров тури"
diff --git a/po/uz@latin.po b/po/uz@latin.po
index cccf69b248..f7e9d77d14 100644
--- a/po/uz@latin.po
+++ b/po/uz@latin.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2010-07-22 02:30+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: uzbek_latin \n"
-"Language: uz@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: uz@latin\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -48,10 +48,10 @@ msgstr "Qidirish"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Qidirish"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "OK"
@@ -132,9 +132,9 @@ msgstr "Ma`lumotlar bazasiga izoh:"
msgid "Table comments"
msgstr "Jadval izohi"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -145,12 +145,12 @@ msgstr "Jadval izohi"
msgid "Column"
msgstr "Maydon nomlari"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -160,9 +160,9 @@ msgstr "Maydon nomlari"
msgid "Type"
msgstr "Tur"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -200,12 +200,13 @@ msgstr "Aloqalar"
msgid "Comments"
msgstr "Izohlar"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -216,17 +217,17 @@ msgstr "Izohlar"
msgid "No"
msgstr "Yo‘q"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -338,8 +339,8 @@ msgstr "Cheklovlar qo‘shish"
msgid "Switch to copied database"
msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -513,8 +514,8 @@ msgstr "\"%s\" ma`lumotlar bazasiga SQL-so‘rov: "
msgid "Submit Query"
msgstr "so‘rovni bajarish"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -621,7 +622,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Ruxsat berilmadi"
@@ -750,8 +751,8 @@ msgstr "Kuzatish faol emas."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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 ko‘rsatilgan miqdorda qatorlarga ega. Batafsil "
"ma`lumot uchun %sdokumentatsiyaga%s qarang."
@@ -771,7 +772,7 @@ msgstr "Replikatsiya (zaxira nusxa ko‘chirish)"
msgid "Sum"
msgstr "Jami"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "\"%s\" - MySQL serveridagi andozaviy ma`lumotlar jadvali turi."
@@ -820,8 +821,8 @@ msgstr "Chop etish versiyasi"
msgid "Empty"
msgstr "Tozalash"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -900,9 +901,9 @@ msgstr "Yangilandi"
msgid "Status"
msgstr "Holat"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -996,8 +997,8 @@ msgstr "Damp \"%s\" faylida saqlandi."
#: import.php:58
#, 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."
msgstr ""
"Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning "
"usullari %sdokumentatsiyada%s keltirilgan."
@@ -1200,11 +1201,11 @@ msgstr "Belgilangan foydalanuvchilarni o‘chirish"
msgid "Close"
msgstr "Yopish"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Tahrirlash"
@@ -1850,231 +1851,12 @@ msgstr "ishlatilmoqda"
msgid "Second"
msgstr "sekundiga"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Shrift o‘lchami"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Yuklanayotgan fayl hajmi PHP konfiguratsion faylida (php.ini) ko‘rsatilgan "
-"\"upload_max_filesize\" direktivasi qiymatidan katta!"
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Yuklanayotgan fayl hajmi HTML formada ko‘rsatilgan \"MAX_FILE_SIZE\" "
-"direktivasi qiymatidan katta!"
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Yuklanayotgan fayl faqatgina qisman yuklandi."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Vaqtinchalik fayllarni saqlash uchun katalog topilmadi."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Faylni diskka yozishdaxatolik yuz berdi."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Faylning yuklanishi uning kengaytmasi sabali to‘xtatildi."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Yuklangan fayl joyini o‘zgartirishda xatolik, [a@./Documentation."
-"html#faq1_11@Documentation]\"FAQ 1.11\"[/a]ga qarang"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Indeks belgilanmagan!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indekslar"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unikal"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Qisilgan"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Elementlar soni"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Izoh"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Birlamchi kalit o‘chirildi"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr " \"%s\" indeksi o‘chirildi"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr " %1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin."
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Ma`lumotlar bazalari"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "Xatolik"
-
-#: libraries/Message.class.php:260
-#, fuzzy, php-format
-#| msgid "%1$d row(s) affected."
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d ta qatorlarga ta`sir etdi."
-msgstr[1] "%1$d ta qatorlarga ta`sir etdi."
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "%1$d row(s) deleted."
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d ta qatorlar o‘chirildi."
-msgstr[1] "%1$d ta qatorlar o‘chirildi."
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "%1$d row(s) inserted."
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d ta qatorlar qo‘yildi."
-msgstr[1] "%1$d ta qatorlar qo‘yildi."
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Cannot load or save configuration"
-msgid "Could not save recent table"
-msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Jadvallarni sanash"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Bironta ham konfiguratsiyalangan server mavjud emas"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Ushbu turdagi jadvallar haqida qo‘shimcha ma`lumot mavjud emas. "
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay oladi."
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "\"%s\" turidagi jadvallar ushbu MySQL serverda faolsizlantirilgan."
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay olmaydi."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Noto‘g‘ri ma`lumotlar bazasi"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Jadval nomi noto‘g‘ri"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "%1$s jadvalini %2$s deb qayta nomlashda xatolik"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "`\"%s\"` jadvalining nomi `\"%s\"` deb o‘zgartirildi."
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr " \"%s\" mavzusi rasmlariga to‘g‘ri yo‘l topilmadi!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Oldindan ko‘rish mumkin emas."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "Tadbiq qilish"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr " \"%s\" asl mavzusi topilmadi!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr " \"%s\" mavzusi topilmadi!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr " \"%s\" mavzusi fayllariga yo‘l topilmadi!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Ulanib bo‘lmadi: noto‘g‘ri sozlangan."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "\"%s\" dasturiga xush kelibsiz"
@@ -2082,8 +1864,8 @@ msgstr "\"%s\" dasturiga xush kelibsiz"
#: libraries/auth/config.auth.lib.php:106
#, 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$sso‘rnatish "
"ssenariysidan%2$s foydalanishingiz mumkin."
@@ -2099,43 +1881,43 @@ msgstr ""
"faylidagi xost, foydalanuvchi va parolni tekshiring va ular MySQL serveri "
"administratoridan olingan ma`lumotlarga mos kelishiga ishonch hosil qiling."
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "Avtorizatsiya"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin dokumentatsiyasi"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "Siz xost/IP adres va bo‘sh joy qoldirib portni kiritishingiz mumkin."
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "Server"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "Foydalanuvchi:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "Parol:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "Serverni tanlang"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "Brauzerda \"cookies\" faollashtirilgan bo‘lishi shart."
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -2143,7 +1925,7 @@ msgstr ""
"Parolsiz autentifikatsiya konfiguratsiya tomonidan o‘chirilgan (qarang "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -2151,8 +1933,8 @@ msgstr ""
"\"%s\" soniya davomida faollik kuzatilmadi, iltimos, qayta avtorizatsiyadan "
"o‘ting. "
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "MySQL serveriga ulanib bo‘lmadi"
@@ -2195,6 +1977,14 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Sahifa tuzib bo‘lmadi"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "Xatolik"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2247,6 +2037,11 @@ msgstr "Jadvallar"
msgid "Data"
msgstr "Ma`lumotlar"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indekslar"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2282,13 +2077,13 @@ msgstr "Privilegiyalarni tekshirish"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Cannot load or save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2546,85 +2341,9 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Close"
-msgid "Closed"
-msgstr "Yopish"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "tuzilish"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Tuzilishi va ma`lumotlari"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "To‘la qo‘yish"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Kengaytirilgan qo‘yilmalar"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Shrift o‘lchami"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3330,6 +3049,12 @@ msgstr "Import va eksport kataloglari va qisish usullarini belgilash"
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Ma`lumotlar bazalari"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Ma`lumotlar bazalarini ko‘rsatish afzalliklari"
@@ -4276,9 +4001,9 @@ msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?"
-"aid=1849494]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql."
-"com/19588]\"MySQL Bugs\"[/a]larga qarang"
+"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?aid=1849494]"
+"\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]"
+"larga qarang"
#: libraries/config/messages.inc.php:387
msgid "Disable use of INFORMATION_SCHEMA"
@@ -4368,8 +4093,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, bo‘sh qoldiring, asl qiymati: "
-"[kbd]\"pma_pdf_pages\"[/kbd]"
+"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: [kbd]"
+"\"pma_pdf_pages\"[/kbd]"
#: libraries/config/messages.inc.php:404
msgid "PDF schema: pages table"
@@ -4383,8 +4108,8 @@ msgid ""
msgstr ""
"Aloqalar, xatcho‘plar va PDF imkoniyatlari uchun ishlatiladigan baza. "
"Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/a]"
-"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: "
-"[kbd]\"phpmyadmin\"[/kbd]"
+"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: [kbd]"
+"\"phpmyadmin\"[/kbd]"
#: libraries/config/messages.inc.php:406
#, fuzzy
@@ -4477,8 +4202,8 @@ msgstr "SSL ulanishdan foydalanish"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: "
-"[kbd]\"pma_table_coords\"[/kbd]"
+"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]"
+"\"pma_table_coords\"[/kbd]"
#: libraries/config/messages.inc.php:423
msgid "PDF schema: table coordinates"
@@ -5074,6 +4799,86 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Noto‘g‘ri IP-adres: \"%s\""
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Close"
+msgid "Closed"
+msgstr "Yopish"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "tuzilish"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Tuzilishi va ma`lumotlari"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "To‘la qo‘yish"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Kengaytirilgan qo‘yilmalar"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -5144,6 +4949,25 @@ msgstr ""
msgid "Add a new Event"
msgstr "Yangi foydalanuvchi qo‘shish"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"\"config.inc.php\" konfiguratsion faylining \"controluser\" direktivasida "
+"ko‘rsatilgan foydalanuvchi yordamida ulanib bo‘lmadi."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Server javob bermayapti"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(yoki lokal MySQL serverning soketi noto‘g‘ri sozlangan)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Tafsilotlar..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -5218,9 +5042,9 @@ msgstr "Uzunlik/qiymatlar"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -5279,6 +5103,11 @@ msgstr "Xavfsizlik"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Izoh"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5342,27 +5171,8 @@ msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
msgstr ""
-"Taxminiy bo‘lishi mumkin. [a@./Documentation."
-"html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang"
-
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"\"config.inc.php\" konfiguratsion faylining \"controluser\" direktivasida "
-"ko‘rsatilgan foydalanuvchi yordamida ulanib bo‘lmadi."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Server javob bermayapti"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(yoki lokal MySQL serverning soketi noto‘g‘ri sozlangan)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Tafsilotlar..."
+"Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]"
+"\"FAQ 3.11\"[/a]ga qarang"
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
@@ -5537,8 +5347,8 @@ msgstr ""
#| "happen: %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 qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar "
@@ -6359,8 +6169,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6677,6 +6487,48 @@ msgstr "Namoyish"
msgid "Export contents"
msgstr "Tarkibini eksport qilish"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Yuklanayotgan fayl hajmi PHP konfiguratsion faylida (php.ini) ko‘rsatilgan "
+"\"upload_max_filesize\" direktivasi qiymatidan katta!"
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Yuklanayotgan fayl hajmi HTML formada ko‘rsatilgan \"MAX_FILE_SIZE\" "
+"direktivasi qiymatidan katta!"
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Yuklanayotgan fayl faqatgina qisman yuklandi."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Vaqtinchalik fayllarni saqlash uchun katalog topilmadi."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Faylni diskka yozishdaxatolik yuz berdi."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Faylning yuklanishi uning kengaytmasi sabali to‘xtatildi."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Yuklangan fayl joyini o‘zgartirishda xatolik, [a@./Documentation."
+"html#faq1_11@Documentation]\"FAQ 1.11\"[/a]ga qarang"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6694,42 +6546,6 @@ msgstr "SQL so‘rovi natijasi"
msgid "Generated by"
msgstr "Tuzilgan"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-"Quyidagi tuzilishlar yo tuzildi yo o‘zgartirildi. Bu yerda siz quyidagi "
-"amallarni bajarishingiz mumkin:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Tuzilmani ko‘rish uchun uning nomi ustiga sichqoncha tugmasini bosing"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "Quyidagi tanlovlarni o‘zgartirish uchun, \"Tanlovlar\" bog‘iga bosing"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Tuzilmani o‘zgartirish uchun, \"Tuzilma\" bog‘iga kiring"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Ushbu bazaga o‘tish"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "tanlovlar"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Ushbu jadvalga o‘tish"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Ushbu ko‘rinishga o‘tish"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6795,6 +6611,42 @@ msgstr "Maydon nomlari"
msgid "This plugin does not support compressed imports!"
msgstr "Ushbu modul qisilgan ma`lumotlarni import qila olmaydi!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+"Quyidagi tuzilishlar yo tuzildi yo o‘zgartirildi. Bu yerda siz quyidagi "
+"amallarni bajarishingiz mumkin:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Tuzilmani ko‘rish uchun uning nomi ustiga sichqoncha tugmasini bosing"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "Quyidagi tanlovlarni o‘zgartirish uchun, \"Tanlovlar\" bog‘iga bosing"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Tuzilmani o‘zgartirish uchun, \"Tuzilma\" bog‘iga kiring"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Ushbu bazaga o‘tish"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "tanlovlar"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Ushbu jadvalga o‘tish"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Ushbu ko‘rinishga o‘tish"
+
#: libraries/import/ods.php:28
#, fuzzy
#| msgid "Import percentages as proper decimals (12.00% to .12)"
@@ -6828,6 +6680,40 @@ msgstr ""
"Ko‘rsatilgan XML fayl yo noto‘g‘ri tuzilgan yo chala. Uni to‘g‘irlab, qayta "
"harakat qilib ko‘ring."
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Indeks belgilanmagan!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unikal"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Qisilgan"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Elementlar soni"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Birlamchi kalit o‘chirildi"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr " \"%s\" indeksi o‘chirildi"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr " %1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin."
+
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6840,6 +6726,30 @@ msgstr "Yo‘q"
msgid "Convert to Kana"
msgstr ""
+#: libraries/Message.class.php:260
+#, fuzzy, php-format
+#| msgid "%1$d row(s) affected."
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d ta qatorlarga ta`sir etdi."
+msgstr[1] "%1$d ta qatorlarga ta`sir etdi."
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "%1$d row(s) deleted."
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d ta qatorlar o‘chirildi."
+msgstr[1] "%1$d ta qatorlar o‘chirildi."
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "%1$d row(s) inserted."
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d ta qatorlar qo‘yildi."
+msgstr[1] "%1$d ta qatorlar qo‘yildi."
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -7084,6 +6994,24 @@ msgstr "Navigatsiya oynasini qayta yuklash"
msgid "This format has no options"
msgstr "Ushbu format uchun sozlanadigan parametr mavjud emas"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Could not save recent table"
+msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Jadvallarni sanash"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Bironta ham konfiguratsiyalangan server mavjud emas"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Tayyor emas"
@@ -7491,63 +7419,6 @@ msgstr "Farq"
msgid "Target database"
msgstr "Nishon baza"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "\"%s\" serverida SQL-so‘rov(lar)ni bajarish "
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "\"%s\" ma`lumotlar bazasida SQL-so‘rov(lar)ni bajarish"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Tozalash"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Maydon nomlari"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Barcha foydalanuvchilarga ruxsat berish"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Shu nomli xatcho‘pni almashtirish"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "So‘rovlar oynasi ichidagi ma`lumotlarni blokirovka qilish"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Taqsimlovchi"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Ushbu so‘rovni qayta ko‘rsatish"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Faqat ko‘rish"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Faylni tanlash"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "Yuklash katalogidan"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7611,6 +7482,63 @@ msgstr "Noto‘g‘ri identifikator"
msgid "Unknown Punctuation String"
msgstr "Noma`lum punktuatsiya"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "\"%s\" serverida SQL-so‘rov(lar)ni bajarish "
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "\"%s\" ma`lumotlar bazasida SQL-so‘rov(lar)ni bajarish"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Tozalash"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Maydon nomlari"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Barcha foydalanuvchilarga ruxsat berish"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Shu nomli xatcho‘pni almashtirish"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "So‘rovlar oynasi ichidagi ma`lumotlarni blokirovka qilish"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Taqsimlovchi"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Ushbu so‘rovni qayta ko‘rsatish"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Faqat ko‘rish"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Faylni tanlash"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "Yuklash katalogidan"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7621,6 +7549,48 @@ msgstr ""
"o‘rnatilganligini tekshiring, batafsil ma`lumot uchun %sdokumentatsiyaga%s "
"qarang."
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Ushbu turdagi jadvallar haqida qo‘shimcha ma`lumot mavjud emas. "
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay oladi."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "\"%s\" turidagi jadvallar ushbu MySQL serverda faolsizlantirilgan."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay olmaydi."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Noto‘g‘ri ma`lumotlar bazasi"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Jadval nomi noto‘g‘ri"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "%1$s jadvalini %2$s deb qayta nomlashda xatolik"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "`\"%s\"` jadvalining nomi `\"%s\"` deb o‘zgartirildi."
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Jadval - bo‘sh!"
@@ -7752,6 +7722,38 @@ msgstr "Bo‘laklarni (PARTITIONS) belgilash"
msgid "+ Add a new value"
msgstr "Yangi foydalanuvchi qo‘shish"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr " \"%s\" mavzusi rasmlariga to‘g‘ri yo‘l topilmadi!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Oldindan ko‘rish mumkin emas."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "Tadbiq qilish"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr " \"%s\" asl mavzusi topilmadi!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr " \"%s\" mavzusi topilmadi!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr " \"%s\" mavzusi fayllariga yo‘l topilmadi!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8930,8 +8932,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 ""
"IZOH: phpMyAdmin foydalanuvchilar privilegiyalari haqidagi ma`lumotlarni "
"to‘g‘ridan-to‘g‘ri MySQL privilegiyalari jadvalidan oladi. Ushbu jadvaldagi "
@@ -10597,9 +10599,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
-#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
-#| "[/kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
+#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
+#| "kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
@@ -10613,9 +10615,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&mode=edit&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&mode=edit&id=%1"
+"$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http[/"
+"kbd] deb belgilash tavsiya etiladi."
#: setup/lib/index.lib.php:270
#, fuzzy, php-format
@@ -11539,8 +11541,8 @@ msgstr "Ko‘rinish nomini o‘zgartirish"
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr ""
-#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation."
-#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang"
+#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]"
+#~ "\"FAQ 3.11\"[/a]ga qarang"
#~ msgid "Bar type"
#~ msgstr "So‘rov turi"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 188ebd9505..40827c53d2 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-06-08 05:00+0200\n"
"Last-Translator: shanyan baishui \n"
"Language-Team: chinese_simplified \n"
-"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -47,10 +47,10 @@ msgstr "搜索"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "搜索"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "执行"
@@ -129,9 +129,9 @@ msgstr "数据库注释:"
msgid "Table comments"
msgstr "表注释"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -140,12 +140,12 @@ msgstr "表注释"
msgid "Column"
msgstr "字段"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -155,9 +155,9 @@ msgstr "字段"
msgid "Type"
msgstr "类型"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -195,12 +195,13 @@ msgstr "链接到"
msgid "Comments"
msgstr "注释"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -211,17 +212,17 @@ msgstr "注释"
msgid "No"
msgstr "否"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -329,8 +330,8 @@ msgstr "强制添加"
msgid "Switch to copied database"
msgstr "切换到复制的数据库"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -491,8 +492,8 @@ msgstr "在数据库 %s 执行 SQL 语句:"
msgid "Submit Query"
msgstr "提交查询"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -599,7 +600,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "拒绝访问"
@@ -718,8 +719,8 @@ msgstr "追踪已禁用。"
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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。"
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -737,7 +738,7 @@ msgstr "复制"
msgid "Sum"
msgstr "总计"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s 是此 MySQL 服务器的默认存储引擎。"
@@ -786,8 +787,8 @@ msgstr "打印预览"
msgid "Empty"
msgstr "清空"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -860,9 +861,9 @@ msgstr "更新"
msgid "Status"
msgstr "状态"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -954,8 +955,8 @@ msgstr "转存已经保存到文件 %s 中。"
#: import.php:58
#, 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."
msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。"
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1128,11 +1129,11 @@ msgstr "正在删除选中的用户"
msgid "Close"
msgstr "关闭"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "编辑"
@@ -1675,221 +1676,12 @@ msgstr "分"
msgid "Second"
msgstr "秒"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "字号"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "上传文件的大小超过 php.ini 文件中 upload_max_filesize 的限制。"
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr "上传文件的大小超过 HTML 表单中指定的 MAX_FILE_SIZE 值。"
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "仅上传了文件的一部分内容。"
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "找不到临时文件夹。"
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "将文件写入磁盘失败。"
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "因扩展而停止文件上传。"
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "上传文件时发生未知错误。"
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"移动上传文件时发生错误,参见 [a@./Documentation.html#faq1_11@Documentation]"
-"FAQ 1.11[/a]。"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "没有已定义的索引!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "索引"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "唯一"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "紧凑"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "基数"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "注释"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "已删除主键"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "已删除索引 %s "
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除"
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "数据库"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "错误"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "影响了 %1$d 行。"
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "删除了 %1$d 行。"
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "插入了 %1$d 行。"
-
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not save configuration"
-msgid "Could not save recent table"
-msgstr "无法保存设置"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "统计数据表"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "没有配置好的服务器"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "没有该存储引擎的详细信息。"
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s 在此 MySQL 服务器上可用。"
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s 在此 MySQL 服务器上被禁止了。"
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "此 MySQL 服务器不支持 %s 存储引擎。"
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "无效的数据库"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "无效的数据表名"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "将表 %1$s 改名为 %2$s 时发生错误"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "已将数据表 %s 改名为 %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "找不到主题 %s 对应的图片路径!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "没有可用的预览。"
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "确定"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "未找到默认主题 %s !"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "未找到主题 %s !"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "找不到主题 %s 的路径"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "无法连接:无效的设置。"
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "欢迎使用 %s"
@@ -1897,8 +1689,8 @@ msgstr "欢迎使用 %s"
#: libraries/auth/config.auth.lib.php:106
#, 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 来创建一个配置文件。"
@@ -1912,56 +1704,56 @@ msgstr ""
"phpMyAdmin 尝试连接到 MySQL 服务器,但服务器拒绝连接。您应该检查配置文件中的"
"主机、用户名和密码,并确认这些信息与 MySQL 服务器管理员所给出的信息一致。"
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "登录"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin 文档"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "您可以输入以空格分隔的主机名/IP地址和端口号。"
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "服务器:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "用户名:"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "密码:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "选择服务器"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "必须启用 Cookies 才能登录。"
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "空密码登录被禁止 (参见 允许空密码)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "登录超时 (%s 秒未活动),请重新登录"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "无法登录 MySQL 服务器"
@@ -2002,6 +1794,14 @@ msgstr "PBMS 错误"
msgid "PBMS connection failed:"
msgstr "PBMS 连接失败:"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "错误"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS 获取 BLOB 信息失败:"
@@ -2054,6 +1854,11 @@ msgstr "数据表"
msgid "Data"
msgstr "数据"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "索引"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2083,13 +1888,13 @@ msgstr "检查权限"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "无法保存设置"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2332,79 +2137,9 @@ msgstr "没有可上传的文件"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "全部"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-#, fuzzy
-#| msgid "Height"
-msgid "Right"
-msgstr "高"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "开启"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "关闭"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "结构"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "数据"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "结构和数据"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "快速 - 仅显示必须的设置项"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "自定义 - 显示所有可用的设置项"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "自定义 - 不显示 快速/自定义 选择"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "完整插入"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "扩展插入"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "以上兼有"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "以上均不"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "字号"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3048,6 +2783,12 @@ msgstr "设置导入和导出文件夹以及压缩选项"
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "数据库"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "数据库显示选项"
@@ -4595,6 +4336,80 @@ msgstr "使用 PMA 数据时控制用户的密码不能为空"
msgid "Incorrect IP address: %s"
msgstr "%s 是一个错误的 IP 地址"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "全部"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+#, fuzzy
+#| msgid "Height"
+msgid "Right"
+msgstr "高"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "开启"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "关闭"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "结构"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "数据"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "结构和数据"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "快速 - 仅显示必须的设置项"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "自定义 - 显示所有可用的设置项"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "自定义 - 不显示 快速/自定义 选择"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "完整插入"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "扩展插入"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "以上兼有"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "以上均不"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4665,6 +4480,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "添加服务器"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr "使用配置文件中定义的控制用户连接失败。"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "服务器没有响应"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(或者本地 MySQL 服务器的套接字没有正确配置)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "详细..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4739,9 +4571,9 @@ msgstr "长度/值"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4800,6 +4632,11 @@ msgstr "安全"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "注释"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4865,23 +4702,6 @@ msgid ""
msgstr ""
"可能接近。参见 [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr "使用配置文件中定义的控制用户连接失败。"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "服务器没有响应"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(或者本地 MySQL 服务器的套接字没有正确配置)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "详细..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5020,8 +4840,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。"
@@ -5755,8 +5575,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6048,6 +5868,44 @@ msgstr "视图"
msgid "Export contents"
msgstr "导出内容"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "上传文件的大小超过 php.ini 文件中 upload_max_filesize 的限制。"
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr "上传文件的大小超过 HTML 表单中指定的 MAX_FILE_SIZE 值。"
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "仅上传了文件的一部分内容。"
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "找不到临时文件夹。"
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "将文件写入磁盘失败。"
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "因扩展而停止文件上传。"
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "上传文件时发生未知错误。"
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"移动上传文件时发生错误,参见 [a@./Documentation.html#faq1_11@Documentation]"
+"FAQ 1.11[/a]。"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6067,40 +5925,6 @@ msgstr "SQL 查询结果"
msgid "Generated by"
msgstr "生成者"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "下列结构被创建或修改。你可以:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "点击它的名字查看内容"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "点击相应的“选项”链接修改它的设置"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "点击“结构”链接编辑它的结构"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "转到数据库"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "设置"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "转到数据表"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "转到视图"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6164,6 +5988,40 @@ msgstr "字段名"
msgid "This plugin does not support compressed imports!"
msgstr "该插件不支持导入文件!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "下列结构被创建或修改。你可以:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "点击它的名字查看内容"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "点击相应的“选项”链接修改它的设置"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "点击“结构”链接编辑它的结构"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "转到数据库"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "设置"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "转到数据表"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "转到视图"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr "导入百分数为小数 (如: 12.00% 将被导入为 .12)"
@@ -6186,6 +6044,40 @@ msgid ""
"the issue and try again."
msgstr "该 XML 文件有错误或者不完整。请修复错误后重试。"
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "没有已定义的索引!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "唯一"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "紧凑"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "基数"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "已删除主键"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "已删除索引 %s "
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除"
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6196,6 +6088,24 @@ msgstr "无"
msgid "Convert to Kana"
msgstr "转换为假名"
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "影响了 %1$d 行。"
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "删除了 %1$d 行。"
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "插入了 %1$d 行。"
+
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "从"
@@ -6434,6 +6344,24 @@ msgstr "刷新导航框架"
msgid "This format has no options"
msgstr "该格式没有选项"
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Could not save recent table"
+msgstr "无法保存设置"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "统计数据表"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "没有配置好的服务器"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "错误"
@@ -6809,61 +6737,6 @@ msgstr "差异"
msgid "Target database"
msgstr "目标数据库"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "在服务器 %s 运行 SQL 查询"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "在数据库 %s 运行 SQL 查询"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "清除"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "字段"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "将此 SQL 查询加为书签"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "让所有用户均可访问此书签"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "替换现有的同名书签"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "不从窗口外覆盖此查询"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "语句定界符"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " 在此再次显示此查询 "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "仅查看"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "文本文件的位置"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "网站服务器上传文件夹"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6923,6 +6796,61 @@ msgstr "无效的标识符"
msgid "Unknown Punctuation String"
msgstr "未知的标点符号字符串"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "在服务器 %s 运行 SQL 查询"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "在数据库 %s 运行 SQL 查询"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "清除"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "字段"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "将此 SQL 查询加为书签"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "让所有用户均可访问此书签"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "替换现有的同名书签"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "不从窗口外覆盖此查询"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "语句定界符"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " 在此再次显示此查询 "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "仅查看"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "文本文件的位置"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "网站服务器上传文件夹"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6931,6 +6859,48 @@ msgid ""
msgstr ""
"SQL 校验程序无法初始化。请检查是否已经安装了%s文档%s内说明的必需 PHP 扩展。"
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "没有该存储引擎的详细信息。"
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s 在此 MySQL 服务器上可用。"
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s 在此 MySQL 服务器上被禁止了。"
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "此 MySQL 服务器不支持 %s 存储引擎。"
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "无效的数据库"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "无效的数据表名"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "将表 %1$s 改名为 %2$s 时发生错误"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "已将数据表 %s 改名为 %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "数据表是空的!"
@@ -7039,6 +7009,38 @@ msgstr "分区定义"
msgid "+ Add a new value"
msgstr "+ 添加"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "找不到主题 %s 对应的图片路径!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "没有可用的预览。"
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "确定"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "未找到默认主题 %s !"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "未找到主题 %s !"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "找不到主题 %s 的路径"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8036,12 +8038,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。"
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
@@ -10414,8 +10416,8 @@ msgstr "将视图改名为"
#~ "Note that not every result table can be put to the chart. See FAQ 6.29"
#~ msgstr ""
-#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29"
+#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29"
#~ msgid "Add a New User"
#~ msgstr "添加新用户"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 1ceb15edd9..a867b3b35b 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-22 10:16+0200\n"
+"POT-Creation-Date: 2011-06-23 06:34-0400\n"
"PO-Revision-Date: 2011-06-19 09:59+0200\n"
"Last-Translator: \n"
"Language-Team: chinese_traditional \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: Pootle 2.0.5\n"
@@ -47,10 +47,10 @@ msgstr "搜尋"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
-#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/core.lib.php:557
-#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
+#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
+#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
+#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
+#: libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "搜尋"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
-#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
-#: server_privileges.php:646 server_privileges.php:1694
-#: server_privileges.php:2051 server_privileges.php:2098
-#: server_privileges.php:2138 server_replication.php:233
-#: server_replication.php:316 server_replication.php:347
-#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
-#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
-#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
-#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
-#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
-#: view_create.php:181 view_operations.php:99
+#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
+#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
+#: server_privileges.php:1694 server_privileges.php:2051
+#: server_privileges.php:2098 server_privileges.php:2138
+#: server_replication.php:233 server_replication.php:316
+#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
+#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
+#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
+#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "執行"
@@ -129,9 +129,9 @@ msgstr "資料庫註釋:"
msgid "Table comments"
msgstr "表註釋"
-#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
-#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
-#: libraries/export/odt.php:302 libraries/export/texytext.php:227
+#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
+#: libraries/export/latex.php:375 libraries/export/odt.php:302
+#: libraries/export/texytext.php:227 libraries/Index.class.php:448
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -140,12 +140,12 @@ msgstr "表註釋"
msgid "Column"
msgstr "欄位"
-#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
-#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
-#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
-#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
-#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
-#: libraries/export/odt.php:305 libraries/export/texytext.php:228
+#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
+#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
+#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
+#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
+#: libraries/export/latex.php:375 libraries/export/odt.php:305
+#: libraries/export/texytext.php:228 libraries/Index.class.php:445
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -155,9 +155,9 @@ msgstr "欄位"
msgid "Type"
msgstr "類型"
-#: db_datadict.php:169 libraries/Index.class.php:451
-#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
-#: libraries/export/odt.php:308 libraries/export/texytext.php:229
+#: db_datadict.php:169 libraries/export/htmlword.php:250
+#: libraries/export/latex.php:375 libraries/export/odt.php:308
+#: libraries/export/texytext.php:229 libraries/Index.class.php:451
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -195,12 +195,13 @@ msgstr "連結到"
msgid "Comments"
msgstr "註釋"
-#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
-#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:109
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
+#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: libraries/Index.class.php:388 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -211,17 +212,17 @@ msgstr "註釋"
msgid "No"
msgstr "否"
-#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
-#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/config.values.php:45 libraries/config.values.php:51
-#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: db_datadict.php:259 js/messages.php:108
+#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
+#: libraries/config.values.php:51 libraries/export/htmlword.php:326
#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
-#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
-#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
-#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
-#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
-#: libraries/mult_submits.inc.php:299
+#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: libraries/Index.class.php:387 libraries/Index.class.php:688
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
+#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -329,8 +330,8 @@ msgstr "新增 constraints"
msgid "Switch to copied database"
msgstr "切換到複製的資料庫"
-#: db_operations.php:552 libraries/Index.class.php:450
-#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
+#: db_operations.php:552 libraries/build_html_for_db.lib.php:19
+#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -491,8 +492,8 @@ msgstr "在資料庫 %s 執行 SQL 指令:"
msgid "Submit Query"
msgstr "送出查詢"
-#: db_routines.php:152 import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
+#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
+#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -599,7 +600,7 @@ msgstr ""
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
-#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
+#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "拒絕訪問"
@@ -718,8 +719,8 @@ msgstr "追蹤已停用"
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, 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。"
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -737,7 +738,7 @@ msgstr "複製"
msgid "Sum"
msgstr "總計"
-#: db_structure.php:448 libraries/StorageEngine.class.php:351
+#: db_structure.php:448 libraries/StorageEngine.class.php:352
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s 是此 MySQL 伺服器的預設儲存引擎"
@@ -786,8 +787,8 @@ msgstr "列印預覽"
msgid "Empty"
msgstr "清空"
-#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
-#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
+#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
+#: libraries/common.lib.php:2957 libraries/Index.class.php:490
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -860,9 +861,9 @@ msgstr "更新"
msgid "Status"
msgstr "狀態"
-#: db_tracking.php:90 libraries/Index.class.php:442
-#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
-#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
+#: db_tracking.php:90 libraries/db_events.inc.php:68
+#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
+#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -954,8 +955,8 @@ msgstr "備份資料已儲存至檔案 %s."
#: import.php:58
#, 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."
msgstr "您上傳的檔案過大, 請查看此 %s 文件 %s 了解如何解決此限制."
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1129,11 +1130,11 @@ msgstr "正在刪除選中的使用者"
msgid "Close"
msgstr "關閉"
-#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
-#: libraries/common.lib.php:594 libraries/common.lib.php:1144
-#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
-#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
+#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/Index.class.php:468
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "編輯"
@@ -1666,215 +1667,12 @@ msgstr "分"
msgid "Second"
msgstr "秒"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "字體大小"
-
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "上傳檔案的大小超過 php.ini 檔案中 upload_max_filesize 的限制"
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr "上傳檔案的大小超過 HTML 表單中指定的 MAX_FILE_SIZE 值"
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "僅上傳了檔案的一部分內容"
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "找不到臨時資料夾"
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "將檔案寫入硬碟失敗"
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "因外掛而停止檔案上傳"
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "上傳檔案時發生未知錯誤"
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"移動上傳文件時發生錯誤,參見 [a@./Documentation.html#faq1_11@Documentation]"
-"FAQ 1.11[/a]。"
-
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "沒有已定義的索引!"
-
-#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "索引"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "唯一"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "緊湊"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "基數"
-
-#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "註解"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "已刪除主鍵"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "已刪除索引 %s "
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一個將可能被刪除"
-
-#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "資料庫"
-
-#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
-#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
-#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
-msgid "Error"
-msgstr "錯誤"
-
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "影響了 %1$d 行。"
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "刪除了 %1$d 行。"
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "插入了 %1$d 行。"
-
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "無法儲存最新資料表"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "最新資料表"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "沒有最新資料表"
-
-#: libraries/StorageEngine.class.php:194
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "沒有該儲存引擎的詳細狀態資訊"
-
-#: libraries/StorageEngine.class.php:354
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "MySQL 伺服器支援 %s"
-
-#: libraries/StorageEngine.class.php:357
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s 在此 MySQL 伺服器上被禁止了"
-
-#: libraries/StorageEngine.class.php:361
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "此 MySQL 伺服器不支援 %s 儲存引擎"
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "無效的資料庫"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "無效的資料資料表名稱"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "將表 %1$s 改名爲 %2$s 時發生錯誤"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "已將資料表 %s 改名爲 %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "無法儲存表格介面使用者喜好設定"
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "找不到佈景主題 %s 指定圖片路徑!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "沒有可用的預覽。"
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "確定"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "未找到預設主題 %s !"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "未找到主題 %s !"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "找不到主題 %s 的路徑"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "無法連線: 設定錯誤."
#: libraries/auth/config.auth.lib.php:91
-#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
+#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
msgstr "歡迎使用 %s"
@@ -1882,8 +1680,8 @@ msgstr "歡迎使用 %s"
#: libraries/auth/config.auth.lib.php:106
#, 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 來建立一個設定檔案"
@@ -1897,56 +1695,56 @@ msgstr ""
"phpMyAdmin 嘗試連線到 MySQL 伺服器,但伺服器拒絕連線。您應該檢查設定檔案中的"
"主機、帳號和密碼,並確認這些資訊與 MySQL 伺服器管理員所給出的資訊一致"
-#: libraries/auth/cookie.auth.lib.php:229
+#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
msgstr "登錄"
-#: libraries/auth/cookie.auth.lib.php:231
-#: libraries/auth/cookie.auth.lib.php:233
+#: libraries/auth/cookie.auth.lib.php:227
+#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
msgstr "phpMyAdmin 檔案"
-#: libraries/auth/cookie.auth.lib.php:243
-#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:239
+#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr "您可以輸入以空格分隔的主機名/IP網址和連結埠"
-#: libraries/auth/cookie.auth.lib.php:243
+#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
msgstr "伺服器:"
-#: libraries/auth/cookie.auth.lib.php:248
+#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
msgstr "使用者名稱"
-#: libraries/auth/cookie.auth.lib.php:252
+#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
msgstr "密碼:"
-#: libraries/auth/cookie.auth.lib.php:259
+#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
msgstr "選擇伺服器"
-#: libraries/auth/cookie.auth.lib.php:305 libraries/header.inc.php:86
+#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
msgstr "必須啟用 Cookies 才能登入。"
-#: libraries/auth/cookie.auth.lib.php:643
+#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "空密碼登錄被禁止 (參見 允許空密碼)"
-#: libraries/auth/cookie.auth.lib.php:647
+#: libraries/auth/cookie.auth.lib.php:643
#: libraries/auth/signon.auth.lib.php:238
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "登錄超時 (%s 秒未操作),請重新登錄"
-#: libraries/auth/cookie.auth.lib.php:657
-#: libraries/auth/cookie.auth.lib.php:659
+#: libraries/auth/cookie.auth.lib.php:653
+#: libraries/auth/cookie.auth.lib.php:655
#: libraries/auth/signon.auth.lib.php:244
msgid "Cannot log in to the MySQL server"
msgstr "無法登錄 MySQL 伺服器"
@@ -1985,6 +1783,14 @@ msgstr "PBMS 錯誤"
msgid "PBMS connection failed:"
msgstr "PBMS 連線失敗"
+#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
+#: libraries/common.lib.php:561 libraries/core.lib.php:232
+#: libraries/import.lib.php:136 libraries/Message.class.php:205
+#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
+#: view_operations.php:60
+msgid "Error"
+msgstr "錯誤"
+
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS 取得 BLOB 資訊失敗:"
@@ -2037,6 +1843,11 @@ msgstr "資料表"
msgid "Data"
msgstr "資料"
+#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "索引"
+
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2066,13 +1877,13 @@ msgstr "檢查權限"
#: libraries/common.inc.php:587
#, fuzzy
#| msgid "Could not save configuration"
-msgid "Failed to to read configuration file"
+msgid "Failed to read configuration file"
msgstr "無法儲存設定"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
msgstr ""
#: libraries/common.inc.php:595
@@ -2315,77 +2126,9 @@ msgstr "沒有可上傳的檔案"
msgid "Execute"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "全部"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "全部皆否"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "左"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "右"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "開啓"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "關閉"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "結構"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "資料"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "結構和資料"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "快速 - 僅顯示必須的設定項"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "自訂 - 顯示所有可用的設定項"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "自訂 - 不顯示 快速/自訂 選擇"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "完整插入"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "外掛插入"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "以上兼有"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "以上均不"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "字體大小"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3029,6 +2772,12 @@ msgstr "設定匯入和匯出資料夾以及壓縮選項"
msgid "LaTeX"
msgstr "LaTeX"
+#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "資料庫"
+
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "資料庫顯示選項"
@@ -4562,6 +4311,78 @@ msgstr "使用 PMA 資料時控制使用者的密碼不能爲空"
msgid "Incorrect IP address: %s"
msgstr "%s 是一個錯誤的 IP 網址"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "全部"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "全部皆否"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "左"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "右"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "開啓"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "關閉"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "結構"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "資料"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "結構和資料"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "快速 - 僅顯示必須的設定項"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "自訂 - 顯示所有可用的設定項"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "自訂 - 不顯示 快速/自訂 選擇"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "完整插入"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "外掛插入"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "以上兼有"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "以上均不"
+
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4632,6 +4453,23 @@ msgstr ""
msgid "Add a new Event"
msgstr "新增伺服器"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr "使用設定檔案中定義的控制使用者連線失敗"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "伺服器沒有響應"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(或者本地 MySQL 伺服器的連線埠沒有正確設定)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "詳細..."
+
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4706,9 +4544,9 @@ msgstr "長度/值"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
-#: libraries/import.lib.php:1167 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
+#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4765,6 +4603,11 @@ msgstr "安全"
msgid "SQL data access"
msgstr ""
+#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "註解"
+
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4830,23 +4673,6 @@ msgid ""
msgstr ""
"可能接近。參見 [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr "使用設定檔案中定義的控制使用者連線失敗"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "伺服器沒有響應"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(或者本地 MySQL 伺服器的連線埠沒有正確設定)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "詳細..."
-
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4987,8 +4813,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"
@@ -5720,8 +5546,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, 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:129
@@ -6015,6 +5841,44 @@ msgstr " view"
msgid "Export contents"
msgstr "匯出內容"
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "上傳檔案的大小超過 php.ini 檔案中 upload_max_filesize 的限制"
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr "上傳檔案的大小超過 HTML 表單中指定的 MAX_FILE_SIZE 值"
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "僅上傳了檔案的一部分內容"
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "找不到臨時資料夾"
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "將檔案寫入硬碟失敗"
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "因外掛而停止檔案上傳"
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "上傳檔案時發生未知錯誤"
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"移動上傳文件時發生錯誤,參見 [a@./Documentation.html#faq1_11@Documentation]"
+"FAQ 1.11[/a]。"
+
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6034,40 +5898,6 @@ msgstr "SQL 查詢結果"
msgid "Generated by"
msgstr "產生者"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "下列結構被建立或修改。您可以:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "點選它的名字查看內容"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "點選相應的“選項”連結修改它的設定"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "點選“結構”連結編輯它的結構"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "轉到資料庫"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "設定"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "轉到資料表"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "轉到 view"
-
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6131,6 +5961,40 @@ msgstr "欄位名稱"
msgid "This plugin does not support compressed imports!"
msgstr "該插件不支援匯入檔案!"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "下列結構被建立或修改。您可以:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "點選它的名字查看內容"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "點選相應的“選項”連結修改它的設定"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "點選“結構”連結編輯它的結構"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "轉到資料庫"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "設定"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "轉到資料表"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "轉到 view"
+
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr "匯入百分數爲小數 (如: 12.00% 將被匯入爲 .12)"
@@ -6153,6 +6017,40 @@ msgid ""
"the issue and try again."
msgstr "該 XML 檔案有錯誤或者不完整。請修復錯誤後重試"
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "沒有已定義的索引!"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "唯一"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "緊湊"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "基數"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "已刪除主鍵"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "已刪除索引 %s "
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一個將可能被刪除"
+
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6163,6 +6061,24 @@ msgstr "無"
msgid "Convert to Kana"
msgstr "轉換爲假名"
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "影響了 %1$d 行。"
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "刪除了 %1$d 行。"
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "插入了 %1$d 行。"
+
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6403,6 +6319,18 @@ msgstr "重新整理導覽框架"
msgid "This format has no options"
msgstr "該格式沒有選項"
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "無法儲存最新資料表"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "最新資料表"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "沒有最新資料表"
+
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "錯誤"
@@ -6776,61 +6704,6 @@ msgstr "差異"
msgid "Target database"
msgstr "目標資料庫"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "在伺服器 %s 運行 SQL 查詢"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "在資料庫 %s 運行 SQL 查詢"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "清除"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "字段"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "將此 SQL 查詢加爲書籤"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "讓所有使用者均可訪問此書籤"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "替換現有的同名書籤"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "不從視窗外覆蓋此查詢"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "指令定界符"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " 在此再次顯示此查詢 "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "僅查看"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "文字檔案的位置"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "網站伺服器上傳資料夾"
-
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6890,6 +6763,61 @@ msgstr "無效的識別符號"
msgid "Unknown Punctuation String"
msgstr "未知的標點符號字元串"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "在伺服器 %s 運行 SQL 查詢"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "在資料庫 %s 運行 SQL 查詢"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "清除"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "字段"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "將此 SQL 查詢加爲書籤"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "讓所有使用者均可訪問此書籤"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "替換現有的同名書籤"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "不從視窗外覆蓋此查詢"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "指令定界符"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " 在此再次顯示此查詢 "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "僅查看"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "文字檔案的位置"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "網站伺服器上傳資料夾"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6898,6 +6826,48 @@ msgid ""
msgstr ""
"SQL 檢驗程序無法原始化。請檢查是否已經安裝了%s檔案%s內說明的必需 PHP 外掛"
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "沒有該儲存引擎的詳細狀態資訊"
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "MySQL 伺服器支援 %s"
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s 在此 MySQL 伺服器上被禁止了"
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "此 MySQL 伺服器不支援 %s 儲存引擎"
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "無效的資料庫"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "無效的資料資料表名稱"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "將表 %1$s 改名爲 %2$s 時發生錯誤"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "已將資料表 %s 改名爲 %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "無法儲存表格介面使用者喜好設定"
+
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "資料表是空的!"
@@ -7006,6 +6976,38 @@ msgstr "分區定義"
msgid "+ Add a new value"
msgstr "+ 增加"
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "找不到佈景主題 %s 指定圖片路徑!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "沒有可用的預覽。"
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "確定"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "未找到預設主題 %s !"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "未找到主題 %s !"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "找不到主題 %s 的路徑"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8003,8 +8005,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 權限表取得使用者權限。如果使用者手動更改表,表"
"內容將可能與伺服器使用的使用者權限有異。在這種情況下,您應在繼續前%s重新載入"
@@ -10388,8 +10390,8 @@ msgstr "將 view改名爲"
#~ "Note that not every result table can be put to the chart. See FAQ 6.29"
#~ msgstr ""
-#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29"
+#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29"
#~ msgid "Add a New User"
#~ msgstr "新增新使用者"
|